31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/bg_cc596F80"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true">
|
|
<TextView
|
|
android:textColor="@color/txt_00A9FF"
|
|
android:id="@+id/tv_popup_exit"
|
|
android:text="@string/confirm_exit"
|
|
style="@style/BottomMenu"/>
|
|
<TextView
|
|
android:textColor="@color/theme_txt_red"
|
|
android:id="@+id/tv_popup_drafts"
|
|
android:layout_marginTop="@dimen/menu_margin"
|
|
android:text="@string/delete_drafts"
|
|
style="@style/BottomMenu"/>
|
|
<TextView
|
|
android:textColor="@color/txt_00A9FF"
|
|
android:id="@+id/tv_popup_cancel"
|
|
android:layout_marginTop="@dimen/menu_bottom_margin"
|
|
android:layout_marginBottom="@dimen/menu_bottom_margin"
|
|
android:text="@string/cancel"
|
|
style="@style/BottomMenu"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|