<?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="match_parent"
|
android:background="#40000000"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="@dimen/dialog_bg_margin"
|
android:background="@drawable/base_bg_dialog_top_stroke"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="20dp"
|
android:layout_marginTop="20dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginBottom="5dp"
|
android:gravity="center"
|
android:text=""
|
android:textColor="@color/dialog_btn"
|
android:textSize="25sp"
|
android:textStyle="bold"
|
android:visibility="gone" />
|
|
|
<TextView
|
android:id="@+id/confirm_data"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:gravity="center"
|
android:text="还未写卡!!!\n您确认退出吗?"
|
android:textColor="@color/text_color"
|
android:textSize="22sp" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="20dp"
|
android:background="@color/line_bg" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:padding="5dp">
|
|
<TextView
|
android:id="@+id/confirm_cancel"
|
android:layout_width="0dp"
|
android:layout_height="@dimen/dialog_btn_height"
|
android:layout_weight="1"
|
android:background="@drawable/textview_select_bg"
|
android:gravity="center"
|
android:text="取 消"
|
android:textColor="@color/text_color"
|
android:textSize="20sp" />
|
|
<View
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:background="@color/line_bg" />
|
|
<TextView
|
android:id="@+id/confirm_ok"
|
android:layout_width="0dp"
|
android:layout_height="@dimen/dialog_btn_height"
|
android:layout_weight="1"
|
android:background="@drawable/textview_select_bg"
|
android:gravity="center"
|
android:text="确 认"
|
android:textColor="@color/dialog_btn"
|
android:textSize="20sp" />
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|