blob: 6c0641deb749c2416991e469f7d25c94cc9e634b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?xml version="1.0" encoding="UTF-8"?>
<TableLayout
android:id="@+id/TableLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:stretchColumns="1"
>
<TableRow>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_item_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:paddingTop="10dip"
android:paddingBottom="10dip"
android:paddingLeft="5dip"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_column="1"
/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@+id/list_item_other"
android:id="@+id/list_item_other"
android:textAppearance="?android:attr/textAppearanceSmall"
android:paddingRight="5dip"
android:gravity="right" />
</TableRow>
</TableLayout>
|