2010-06-03 11:34:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="5dp"
|
2013-07-14 13:58:39 +02:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:paddingTop="5dp">
|
2010-06-03 11:34:04 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_item"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:focusable="false"
|
|
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/favourite_icon"
|
|
|
|
android:layout_width="25dp"
|
|
|
|
android:paddingRight="2dp"
|
|
|
|
android:paddingTop="2dp"
|
|
|
|
android:layout_height="fill_parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/favourite_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/ListText" />
|
2010-06-03 11:34:04 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|