2014-05-24 02:04:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-04 11:56:06 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:paddingTop="5dp">
|
2015-05-26 01:20:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/settings"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:focusable="false"/>
|
2014-05-24 02:04:04 +02:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/explist_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-03-19 21:16:11 +01:00
|
|
|
android:paddingLeft="6dp"/>
|
2014-05-24 02:04:04 +02:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/category_name"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"
|
2015-02-04 11:56:06 +01:00
|
|
|
android:maxLines="1"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:textColor="?android:textColorPrimary"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2015-03-12 17:48:30 +01:00
|
|
|
tools:text="@string/lorem_ipsum"/>
|
2014-06-01 23:54:20 +02:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<include layout="@layout/check_item_rel"/>
|
2014-06-01 23:54:20 +02:00
|
|
|
|
2014-05-24 23:08:10 +02:00
|
|
|
|
2015-02-04 11:56:06 +01:00
|
|
|
|
2014-05-24 23:08:10 +02:00
|
|
|
|
2014-05-24 02:04:04 +02:00
|
|
|
</LinearLayout>
|