You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
877 B
XML
29 lines
877 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
|
|
android:background="#F3F3F3">
|
|
|
|
|
|
<!-- title -->
|
|
<TextView
|
|
android:id="@+id/header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:textSize="16dp"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
<!-- divider -->
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginBottom="1dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="#DADADC" ></View>
|
|
|
|
</RelativeLayout>
|