2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-09-13 11:28:40 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-01 17:08:28 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
tools:viewBindingIgnore="true">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/text1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeightSmall"
|
|
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
|
|
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
|
|
android:paddingRight="?android:attr/listPreferredItemPaddingRight"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2020-09-13 11:28:40 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2020-07-01 17:08:28 +00:00
|
|
|
android:id="@+id/collapsingArrow"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignTop="@android:id/text1"
|
|
|
|
android:layout_alignBottom="@android:id/text1"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginEnd="3dp"
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
android:contentDescription="@null"
|
2020-09-13 11:28:40 +00:00
|
|
|
app:srcCompat="@drawable/ic_keyboard_arrow_down_24" />
|
2020-07-01 17:08:28 +00:00
|
|
|
</RelativeLayout>
|