diff options
author | David A. Madore <david+git@madore.org> | 2013-09-04 22:30:06 +0200 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2013-09-04 22:30:06 +0200 |
commit | b0124ceb30ebde2aa7ff42351d4160f5cb85d8c2 (patch) | |
tree | 4256afa542808a557f558fbbf49babe53a68c66b /res/layout/char_details.xml | |
parent | 47f5265ebe5e2c5a6ae2e4e40f620426f7eb15ed (diff) | |
download | UnicodeMap-master.tar.gz UnicodeMap-master.tar.bz2 UnicodeMap-master.zip |
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> |