OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
3 android:layout_width="fill_parent" | |
4 android:layout_height="?android:attr/listPreferredItemHeight" | |
5 android:padding="6dip" | |
6 > | |
7 <TextView | |
8 android:id="@+id/todo_title" | |
9 android:text="Some todo item..." | |
10 android:layout_width="fill_parent" | |
11 android:layout_height="fill_parent" | |
12 android:gravity="left|center" | |
13 android:singleLine="true" | |
14 android:padding="3dip" | |
15 android:textSize="16sp" | |
16 /> | |
17 <CheckBox | |
18 android:id="@+id/todo_status" | |
19 android:layout_width="wrap_content" | |
20 android:layout_height="fill_parent" | |
21 android:layout_alignParentRight="true" | |
22 android:focusable="false" | |
23 android:clickable="false" | |
24 /> | |
25 </RelativeLayout> | |
OLD | NEW |