2020-10-03 11:58:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-04 22:29:50 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-10-03 11:58:34 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
2020-10-04 22:29:50 +02:00
|
|
|
android:focusable="true"
|
|
|
|
android:orientation="horizontal">
|
2020-10-03 11:58:34 +02:00
|
|
|
|
2020-10-04 22:29:50 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
2020-10-03 11:58:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2020-10-04 22:29:50 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSecondary"
|
|
|
|
android:textColor="@android:color/tertiary_text_light"
|
|
|
|
tools:text="Summary" />
|
|
|
|
</LinearLayout>
|
2020-10-03 11:58:34 +02:00
|
|
|
|
|
|
|
<com.google.android.material.checkbox.MaterialCheckBox
|
|
|
|
android:id="@+id/checkbox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-04 22:29:50 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:clickable="false" />
|
|
|
|
</LinearLayout>
|