35 lines
987 B
XML
35 lines
987 B
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"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@color/white"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="8dp"
|
||
|
android:background="@color/gray2"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/btn_cancel"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="54dp"
|
||
|
android:background="@color/white"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/cancel"
|
||
|
android:textColor="@color/textColor"
|
||
|
android:textSize="18sp"
|
||
|
/>
|
||
|
</LinearLayout>
|