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-24 17:23:32 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="48dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-04-01 16:15:08 +02:00
|
|
|
tools:src="@drawable/ic_action_gabout_dark" />
|
2014-10-24 17:23:32 +02:00
|
|
|
|
2014-10-26 00:03:34 +02:00
|
|
|
<TextView
|
2014-11-17 16:25:17 +01:00
|
|
|
android:id="@+id/title"
|
2015-12-01 10:41:30 +01:00
|
|
|
android:layout_width="0dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginLeft="11dp"
|
|
|
|
tools:text="Some title text" />
|
2014-10-24 17:23:32 +02:00
|
|
|
|
|
|
|
<CheckBox
|
2016-03-21 15:55:09 +01:00
|
|
|
android:id="@+id/toggle_item"
|
2015-05-25 18:44:07 +02:00
|
|
|
android:layout_width="wrap_content"
|
2015-05-25 10:44:01 +02:00
|
|
|
android:layout_height="@dimen/list_item_height"
|
2014-10-24 17:23:32 +02:00
|
|
|
android:layout_marginLeft="11dp"
|
|
|
|
android:focusable="false"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
2014-10-21 19:47:47 +02:00
|
|
|
</LinearLayout>
|