2020-01-05 20:43:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-05 20:43:07 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
2020-03-14 18:18:34 +01:00
|
|
|
android:background="?attr/colorPrimary"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:elevation="2dp"
|
2020-01-05 20:43:07 +01:00
|
|
|
android:gravity="center_vertical"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:orientation="horizontal"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
2020-01-05 20:43:07 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_weight="1"
|
2020-01-05 20:43:07 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
|
2020-03-14 18:18:34 +01:00
|
|
|
android:textColor="?attr/colorOnPrimary"
|
2020-02-22 00:43:50 +01:00
|
|
|
tools:text="Header" />
|
2020-01-05 20:43:07 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/expand_icon"
|
|
|
|
android:layout_width="wrap_content"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2020-01-05 20:43:07 +01:00
|
|
|
|
2020-01-10 01:10:55 +01:00
|
|
|
</LinearLayout>
|