55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="280dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_dialog"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="50dp"
|
|
android:layout_marginBottom="50dp"
|
|
android:gravity="center_horizontal"
|
|
android:padding="20dp"
|
|
android:text="@string/dialog_tip"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="15sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="30dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/btn_cancel"
|
|
android:layout_width="100dp"
|
|
android:layout_height="35dp"
|
|
android:background="@mipmap/icon_del_sys_confirm"
|
|
android:gravity="center"
|
|
android:paddingBottom="2dp"
|
|
android:text="@string/sys_msg_cancel"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/btn_confirm"
|
|
android:layout_width="100dp"
|
|
android:layout_height="35dp"
|
|
android:layout_marginLeft="30dp"
|
|
android:background="@mipmap/icon_del_sys_cancel"
|
|
android:gravity="center"
|
|
android:paddingBottom="2dp"
|
|
android:text="@string/confirm"
|
|
android:textColor="@color/yellow_ff6c00"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |