blob: bd4b3d53b7e3ae857f37dfa1112910f61942f83f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?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="wrap_content"
android:paddingLeft="50dp" >
<TextView
android:id="@+id/childname"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="left"
android:focusable="false"
android:textSize="18dp" />
<CheckBox
android:id="@+id/check1"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:layout_weight="1"
android:focusable="false"
android:gravity="right" />
</LinearLayout>
|