2018-02-05 16:50:56 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2018-02-05 16:50:56 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingLeft="@dimen/material_component_text_fields_padding_above_and_below_label"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
tools:text="Title"/>
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</FrameLayout>
|