2010-02-27 23:57:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-09-21 01:26:40 +00:00
|
|
|
|
|
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-02-27 23:57:22 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2010-09-21 01:26:40 +00:00
|
|
|
android:stretchColumns="1">
|
|
|
|
<TableRow>
|
2011-06-10 22:07:42 +00:00
|
|
|
<ImageView android:id="@+id/itemicon" android:layout_width="50dip" android:layout_height="50dip" android:padding="3dip"></ImageView>
|
2010-07-23 11:10:00 +00:00
|
|
|
|
2010-09-21 01:26:40 +00:00
|
|
|
<TextView android:layout_height="wrap_content" android:id="@+id/itemtext" android:text="uid:packages" android:textSize="18sp" android:padding="3dip"></TextView>
|
2010-07-23 11:10:00 +00:00
|
|
|
|
2010-09-21 01:26:40 +00:00
|
|
|
<CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/itemcheck" ></CheckBox>
|
|
|
|
|
|
|
|
</TableRow>
|
2011-06-12 19:41:46 +00:00
|
|
|
|
2010-09-21 01:26:40 +00:00
|
|
|
</TableLayout>
|
2010-07-19 22:34:15 +00:00
|
|
|
|