summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2010-04-26 22:28:20 +0200
committerDavid A. Madore <david+git@madore.org>2010-04-27 02:22:30 +0200
commit4307bce6cd10fe0e3ebb86118d2077fbd78ff1cb (patch)
tree9e884d1b3eb15c075ed6941d5ce1d0fdfa4ee55e /res/layout
parenta179d593013b67e5ef9f7b74fe50547ddd7ae512 (diff)
downloadUnicodeMap-4307bce6cd10fe0e3ebb86118d2077fbd78ff1cb.tar.gz
UnicodeMap-4307bce6cd10fe0e3ebb86118d2077fbd78ff1cb.tar.bz2
UnicodeMap-4307bce6cd10fe0e3ebb86118d2077fbd78ff1cb.zip
Show character details on long click.
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/char_details.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/res/layout/char_details.xml b/res/layout/char_details.xml
new file mode 100644
index 0000000..57a6b35
--- /dev/null
+++ b/res/layout/char_details.xml
@@ -0,0 +1,18 @@
+<?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"
+ android:background="#f0e0e0e0">
+ <TextView android:id="@+id/detailsLabel"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:textSize="20sp"
+ android:textColor="#ff000000" />
+ <TextView android:id="@+id/utf8Label"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:textSize="16sp"
+ android:textColor="#ff404040" />
+</LinearLayout>