summaryrefslogtreecommitdiffstats
path: root/res/layout/list_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/list_item.xml')
-rw-r--r--res/layout/list_item.xml18
1 files changed, 14 insertions, 4 deletions
diff --git a/res/layout/list_item.xml b/res/layout/list_item.xml
index 383895f..3b8c592 100644
--- a/res/layout/list_item.xml
+++ b/res/layout/list_item.xml
@@ -1,7 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:padding="10dp"
- android:textSize="16sp"
- />
+ android:orientation="horizontal"
+ android:padding="10dp">
+ <TextView android:id="@+id/charText"
+ android:layout_width="32sp"
+ android:layout_height="fill_parent"
+ android:textSize="18sp"
+ android:textColor="#ffffff80" />
+ <TextView android:id="@+id/labelText"
+ android:layout_width="0dip"
+ android:layout_height="fill_parent"
+ android:layout_weight="1"
+ android:textSize="16sp" />
+</LinearLayout>