2011-03-15 14:11:51 +00:00
|
|
|
<!-- cribbed from simple_list_item_1 -->
|
2011-03-27 19:07:06 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="horizontal"
|
2011-03-15 14:11:51 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2011-03-27 19:07:06 +00:00
|
|
|
>
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:scaleType="center"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:singleLine="true"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|