OSDN Git Service

a6861f8ef35b6e5a59e541f321daac31ce13b693
[android-x86/external-koush-Widgets.git] / Widgets / res / layout-v14 / list_item_small.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="fill_parent"
4     android:layout_height="wrap_content"
5     android:minHeight="64dp"
6     android:orientation="horizontal" >
7
8     <ImageView
9         android:id="@+id/image"
10         android:layout_width="48dp"
11         android:layout_height="32dp"
12         android:layout_gravity="center_vertical"
13         android:layout_margin="2dp"
14         android:scaleType="fitCenter" >
15     </ImageView>
16
17     <LinearLayout
18         android:layout_width="fill_parent"
19         android:layout_height="wrap_content"
20         android:layout_gravity="center_vertical"
21         android:layout_weight="1"
22         android:orientation="vertical" >
23
24         <TextView
25             android:id="@+id/title"
26             android:layout_width="fill_parent"
27             android:layout_height="wrap_content"
28             style="@android:style/TextAppearance.DeviceDefault.Medium" />
29
30         <TextView
31             android:id="@+id/summary"
32             android:layout_width="fill_parent"
33             android:layout_height="wrap_content"
34             style="@android:style/TextAppearance.DeviceDefault.Small" />
35     </LinearLayout>
36
37     <CheckBox
38         android:id="@+id/checkbox"
39         android:layout_width="wrap_content"
40         android:layout_height="wrap_content"
41         android:layout_gravity="center"
42         android:layout_marginLeft="2dp"
43         android:layout_marginRight="2dp"
44         android:focusable="false"
45         android:focusableInTouchMode="false" />
46
47 </LinearLayout>