2017-09-23 13:11:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2020-04-19 10:17:47 +02:00
|
|
|
style="@style/TextAppearance.MaterialComponents.Caption"
|
2017-09-23 13:11:39 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
2020-04-19 10:17:47 +02:00
|
|
|
android:paddingStart="12dp"
|
2017-09-23 13:11:39 +02:00
|
|
|
tools:text="Title" />
|
|
|
|
|
2020-01-10 01:10:55 +01:00
|
|
|
</FrameLayout>
|