2017-09-23 07:11:39 -04: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"
|
2017-09-23 07:11:39 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:paddingStart="@dimen/material_component_text_fields_padding_above_and_below_label"
|
2017-09-23 07:11:39 -04:00
|
|
|
android:paddingTop="8dp"
|
2020-03-22 12:43:42 -04:00
|
|
|
android:paddingEnd="@dimen/material_component_text_fields_padding_above_and_below_label"
|
2017-09-23 07:11:39 -04:00
|
|
|
android:paddingBottom="8dp"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
2020-01-09 19:10:55 -05:00
|
|
|
</FrameLayout>
|