mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 08:40:00 +00:00
26 lines
1 KiB
XML
26 lines
1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="1dp"
|
||
|
|
android:background="@color/black_20_alpha"
|
||
|
|
android:layout_marginTop="12dp"/>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/label"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
|
android:layout_marginLeft="24dp"
|
||
|
|
android:layout_marginRight="24dp"
|
||
|
|
tools:text="Section Header"
|
||
|
|
android:layout_marginTop="12dp"
|
||
|
|
android:layout_marginBottom="12dp" />
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|