diff options
Diffstat (limited to 'res/layout/char_details.xml')
-rw-r--r-- | res/layout/char_details.xml | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/res/layout/char_details.xml b/res/layout/char_details.xml index c271da0..20800c3 100644 --- a/res/layout/char_details.xml +++ b/res/layout/char_details.xml @@ -3,6 +3,7 @@ android:id="@+id/detailsLayout" android:layout_width="fill_parent" android:layout_height="fill_parent" + android:minWidth="256dp" android:padding="10dp" android:orientation="vertical" android:background="#f0e0e0e0"> @@ -16,6 +17,11 @@ android:layout_height="wrap_content" android:textSize="16sp" android:textColor="#ff404040" /> + <TextView android:id="@+id/rangeLabel" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textSize="16sp" + android:textColor="#ff400000" /> <TextView android:id="@+id/categoryLabel" android:layout_width="fill_parent" android:layout_height="wrap_content" @@ -29,15 +35,26 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" - android:text="@string/copy_button" /> + android:text="@string/copy_char_button" /> <Button android:id="@+id/appendCharButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" - android:text="@string/append_button" /> + android:text="@string/append_char_button" /> </LinearLayout> - <Button android:id="@+id/copyNameButton" + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" - android:text="@string/copy_name_button" /> + android:orientation="horizontal"> + <Button android:id="@+id/copyCodeButton" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/copy_code_button" /> + <Button android:id="@+id/copyNameButton" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/copy_name_button" /> + </LinearLayout> </LinearLayout> |