habitica-android/Habitica/res/layout/shop_section_header.xml

26 lines
1 KiB
XML
Raw Normal View History

2017-07-20 12:19:10 +00:00
<?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>