2020-01-05 14:43:07 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-27 17:59:52 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-01-05 14:43:07 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
|
|
|
android:gravity="center_vertical"
|
2020-09-27 18:06:27 -04:00
|
|
|
android:background="?android:attr/colorBackground"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:orientation="horizontal"
|
2020-01-09 19:10:55 -05:00
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
2020-01-05 14:43:07 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_weight="1"
|
2020-01-05 14:43:07 -05:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2020-09-27 13:41:25 -04:00
|
|
|
android:textAppearance="@style/TextAppearance.Medium.SubHeading"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:text="Header" />
|
2020-01-05 14:43:07 -05:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/expand_icon"
|
|
|
|
android:layout_width="wrap_content"
|
2020-06-23 08:45:36 -04:00
|
|
|
android:layout_height="wrap_content"
|
2021-03-27 17:59:52 -04:00
|
|
|
app:tint="?attr/colorOnPrimary" />
|
2020-01-05 14:43:07 -05:00
|
|
|
|
2020-01-09 19:10:55 -05:00
|
|
|
</LinearLayout>
|