diff options
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/char_details.xml | 18 |
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> |