<?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="match_parent">
|
|
<RelativeLayout
|
android:layout_centerInParent="true"
|
android:orientation="horizontal"
|
android:id="@+id/ll_container"
|
android:layout_width="match_parent"
|
android:layout_height="50dp">
|
<FrameLayout
|
android:id="@+id/left_container"
|
android:layout_centerVertical="true"
|
android:layout_width="24dp"
|
android:layout_height="24dp"
|
/>
|
|
<TextView
|
android:id="@+id/left_text"
|
android:layout_marginLeft="10dp"
|
android:layout_centerVertical="true"
|
android:layout_toRightOf="@id/left_container"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@android:color/black"
|
/>
|
</RelativeLayout>
|
|
<View
|
android:layout_alignParentRight="true"
|
android:layout_alignParentBottom="true"
|
android:id="@+id/divider"
|
android:background="#dddd"
|
android:layout_width="360dp"
|
android:layout_height="0.5dp"/>
|
</RelativeLayout>
|