<?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="@color/register_gray"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/tv_dialog_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white"
|
android:gravity="center"
|
android:padding="8dp"
|
android:textSize="20sp"
|
android:textStyle="bold" />
|
|
<EditText
|
android:id="@+id/et_dialog_message"
|
android:layout_width="match_parent"
|
android:layout_height="150dp"
|
android:layout_margin="5dp"
|
android:background="@color/white"
|
android:padding="8dp" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="38dp">
|
|
<TextView
|
android:id="@+id/tv_cancel"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_gravity="center"
|
android:layout_margin="5dp"
|
android:layout_weight="1"
|
android:background="@color/white"
|
android:gravity="center"
|
android:text="取消" />
|
|
<TextView
|
android:id="@+id/tv_confirm"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_margin="5dp"
|
android:layout_weight="1"
|
android:background="@color/white"
|
android:gravity="center"
|
android:text="确认" />
|
</LinearLayout>
|
</LinearLayout>
|