diff options
author | David A. Madore <david+git@madore.org> | 2010-04-26 19:17:24 +0200 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2010-04-26 19:17:24 +0200 |
commit | cddec9d933c4bc46e4bec6094630ea7a19fd6860 (patch) | |
tree | 0b5b1ba7d9c043d322cfdba1d9b6fc99abcb89ac /res/layout | |
parent | 6fdb1a4b8f2fa07cabc742d71048e8f5ecfdaac8 (diff) | |
download | UnicodeMap-cddec9d933c4bc46e4bec6094630ea7a19fd6860.tar.gz UnicodeMap-cddec9d933c4bc46e4bec6094630ea7a19fd6860.tar.bz2 UnicodeMap-cddec9d933c4bc46e4bec6094630ea7a19fd6860.zip |
Move certain constant strings to resources.
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/main_layout.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/res/layout/main_layout.xml b/res/layout/main_layout.xml index 9500f4d..571a2dc 100644 --- a/res/layout/main_layout.xml +++ b/res/layout/main_layout.xml @@ -7,6 +7,11 @@ android:layout_width="fill_parent" android:layout_height="0dip" android:layout_weight="1" /> + <TextView android:id="@id/android:empty" + android:layout_width="fill_parent" + android:layout_height="0dip" + android:layout_weight="1" + android:text="@string/empty_list" /> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" @@ -19,10 +24,6 @@ <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="fill_parent" - android:text="Copy" /> + android:text="@string/copy_button" /> </LinearLayout> - <TextView android:id="@id/android:empty" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:text="Nothing here" /> </LinearLayout> |