mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-22 17:02:21 -05:00
"Add" layouts: Use minimum width for small buttons
This commit is contained in:
parent
450ba9c7a2
commit
ca6e342c9d
@ -13,8 +13,8 @@
|
|||||||
android:id="@+id/aliases"
|
android:id="@+id/aliases"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content" />
|
android:layout_height="wrap_content" />
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<EditText
|
<EditText
|
||||||
@ -23,26 +23,29 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:layout_weight="1" />
|
android:layout_weight="1" />
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/add"
|
android:id="@+id/add"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:enabled="false"
|
android:enabled="false"
|
||||||
android:text="Add" />
|
android:text="Add"
|
||||||
</LinearLayout>
|
android:minWidth="50px" />
|
||||||
<LinearLayout
|
</LinearLayout>
|
||||||
android:orientation="horizontal"
|
<LinearLayout
|
||||||
|
android:orientation="horizontal"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<Button
|
<Button
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/ok"
|
android:id="@+id/ok"
|
||||||
android:text="Ok" />
|
android:text="Ok"
|
||||||
<Button
|
android:minWidth="75px" />
|
||||||
android:layout_width="wrap_content"
|
<Button
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:id="@+id/cancel"
|
android:layout_height="wrap_content"
|
||||||
android:text="Cancel" />
|
android:id="@+id/cancel"
|
||||||
|
android:text="Cancel"
|
||||||
|
android:minWidth="75px" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -30,39 +30,42 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
android:text="@string/channel_add_description"
|
android:text="@string/channel_add_description"
|
||||||
android:padding="5px" />
|
android:padding="5px" />
|
||||||
<ListView
|
<ListView
|
||||||
android:id="@+id/channels"
|
android:id="@+id/channels"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content" />
|
android:layout_height="wrap_content" />
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/channel"
|
android:id="@+id/channel"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:text="#"
|
android:text="#"
|
||||||
android:layout_weight="1" />
|
android:layout_weight="1" />
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/add"
|
android:id="@+id/add"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/action_add" />
|
android:text="@string/action_add"
|
||||||
</LinearLayout>
|
android:minWidth="50px" />
|
||||||
<LinearLayout
|
</LinearLayout>
|
||||||
android:orientation="horizontal"
|
<LinearLayout
|
||||||
android:layout_width="fill_parent"
|
android:orientation="horizontal"
|
||||||
android:layout_height="wrap_content">
|
android:layout_width="fill_parent"
|
||||||
<Button
|
android:layout_height="wrap_content">
|
||||||
android:layout_width="wrap_content"
|
<Button
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:id="@+id/ok"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/action_ok" />
|
android:id="@+id/ok"
|
||||||
<Button
|
android:text="@string/action_ok"
|
||||||
android:layout_width="wrap_content"
|
android:minWidth="75px" />
|
||||||
android:layout_height="wrap_content"
|
<Button
|
||||||
android:id="@+id/cancel"
|
android:layout_width="wrap_content"
|
||||||
android:text="@string/action_cancel" />
|
android:layout_height="wrap_content"
|
||||||
</LinearLayout>
|
android:id="@+id/cancel"
|
||||||
</LinearLayout>
|
android:text="@string/action_cancel"
|
||||||
|
android:minWidth="75px" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
@ -33,8 +33,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
android:id="@+id/commands"
|
android:id="@+id/commands"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content" />
|
android:layout_height="wrap_content" />
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<EditText
|
<EditText
|
||||||
@ -44,25 +44,28 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:text="/"
|
android:text="/"
|
||||||
android:layout_weight="1" />
|
android:layout_weight="1" />
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/add"
|
android:id="@+id/add"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/action_add" />
|
android:text="@string/action_add"
|
||||||
</LinearLayout>
|
android:minWidth="50px" />
|
||||||
<LinearLayout
|
</LinearLayout>
|
||||||
android:orientation="horizontal"
|
<LinearLayout
|
||||||
|
android:orientation="horizontal"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<Button
|
<Button
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/ok"
|
android:id="@+id/ok"
|
||||||
android:text="@string/action_ok" />
|
android:text="@string/action_ok"
|
||||||
<Button
|
android:minWidth="75px" />
|
||||||
android:layout_width="wrap_content"
|
<Button
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:id="@+id/cancel"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/action_cancel" />
|
android:id="@+id/cancel"
|
||||||
|
android:text="@string/action_cancel"
|
||||||
|
android:minWidth="75px" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
Loading…
Reference in New Issue
Block a user