2014-10-21 19:47:47 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-10-23 12:45:06 +02:00
|
|
|
android:orientation="horizontal"
|
2014-10-22 14:13:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp"
|
2014-10-24 14:50:53 +02:00
|
|
|
android:paddingLeft="16dp"
|
2014-10-24 15:29:54 +02:00
|
|
|
android:paddingRight="16dp">
|
2014-10-22 14:13:04 +02:00
|
|
|
<ImageView android:id="@+id/icon"
|
2014-10-24 15:22:34 +02:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
2014-10-22 14:13:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
2014-10-24 15:22:34 +02:00
|
|
|
<LinearLayout android:layout_marginLeft="11dp"
|
2014-10-23 12:45:06 +02:00
|
|
|
android:layout_width="0dp"
|
2014-10-22 14:13:04 +02:00
|
|
|
android:layout_weight="1"
|
2014-10-23 12:45:06 +02:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:textSize="18sp"
|
2014-10-22 14:13:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
2014-10-23 12:45:06 +02:00
|
|
|
<TextView android:id="@+id/descr"
|
2014-10-22 14:13:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
2014-10-23 12:45:06 +02:00
|
|
|
<CheckBox android:id="@+id/check_item"
|
|
|
|
android:focusable="false"
|
2014-10-22 14:13:04 +02:00
|
|
|
android:layout_marginLeft="11dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
2014-10-21 19:47:47 +02:00
|
|
|
</LinearLayout>
|