blob: 4362dcd27dd6fe7ff9ebd1cc974cabf13f404286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.divider.MaterialDivider
android:layout_width="match_parent"
app:dividerInsetEnd="8dp"
app:dividerInsetStart="8dp"
android:layout_marginTop="8dp"
android:layout_height="wrap_content"/>
</FrameLayout>
|