2016-01-18 12:04:07 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-01-21 10:38:25 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="32dp"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:background="?attr/colorPrimary"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:elevation="4dp"
|
2016-01-21 10:38:25 -05:00
|
|
|
android:gravity="center_vertical"
|
2017-01-22 14:06:43 -05:00
|
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
|
2016-01-21 10:38:25 -05:00
|
|
|
|
|
|
|
<TextView
|
2016-03-12 08:22:40 -05:00
|
|
|
android:id="@+id/section_text"
|
2020-04-19 11:13:04 -04:00
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
2016-01-21 10:38:25 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2020-03-14 13:18:34 -04:00
|
|
|
android:maxLines="1"
|
2020-04-19 11:13:04 -04:00
|
|
|
android:textColor="?attr/colorOnPrimary"
|
|
|
|
android:textStyle="bold" />
|
2016-01-21 10:38:25 -05:00
|
|
|
|
|
|
|
</FrameLayout>
|