diff options
author | David A. Madore <david+git@madore.org> | 2010-05-01 23:14:07 +0200 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2010-05-01 23:14:07 +0200 |
commit | 1c6eb70f0640269304041982f7514df92b047776 (patch) | |
tree | 8e6206a5a0d1a90b45c1c24151012f9718eb5c48 /res/layout | |
parent | d19282f8ce9d4256875e37358eda3ee19527d1f6 (diff) | |
download | UnicodeMap-1c6eb70f0640269304041982f7514df92b047776.tar.gz UnicodeMap-1c6eb70f0640269304041982f7514df92b047776.tar.bz2 UnicodeMap-1c6eb70f0640269304041982f7514df92b047776.zip |
New feature: decode Unicode character string.
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/decode_dialog.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/res/layout/decode_dialog.xml b/res/layout/decode_dialog.xml new file mode 100644 index 0000000..0cb1f20 --- /dev/null +++ b/res/layout/decode_dialog.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:padding="10dp" + android:orientation="vertical"> + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="horizontal"> + <EditText android:id="@+id/decodeString" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="1" + android:maxLength="1000" /> + <Button android:id="@+id/decodeButton" + android:layout_width="wrap_content" + android:layout_height="fill_parent" + android:text="@string/decode_button" /> + </LinearLayout> + <TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/decode_hint" /> +</LinearLayout> |