summaryrefslogtreecommitdiffstats
path: root/res/layout/list_item.xml
blob: 3b8c59269b499cb77d75c4fecc4c07bf9064881d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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: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>