108 lines
4.0 KiB
XML
108 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="260dp"
|
|
android:layout_centerInParent="true"
|
|
android:paddingTop="16dp"
|
|
android:background="@drawable/bg_dialog"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_gravity="center"
|
|
android:maxWidth="80dp"
|
|
android:maxHeight="80dp"
|
|
android:layout_marginRight="16dp"
|
|
android:visibility="visible"
|
|
tools:src="@drawable/bind" />
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center_vertical"
|
|
android:textColor="#333333"
|
|
android:textSize="20sp"
|
|
android:visibility="visible"
|
|
tools:text="消息提示" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center|left"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginRight="20dp"
|
|
android:lineSpacingExtra="3dp"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:textSize="16dp"
|
|
android:textColor="#999999"
|
|
tools:text="提示消息提示消息提示消息提示消息提示消息提示消息提示消息提示消息" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:layout_marginTop="16dp"
|
|
android:background="#E4E4E4" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/negtive"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:paddingTop="16dp"
|
|
android:paddingBottom="16dp"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="center"
|
|
android:singleLine="true"
|
|
tools:text="No"
|
|
android:textColor="#999999"
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
android:id="@+id/column_line"
|
|
android:layout_width="1px"
|
|
android:layout_height="match_parent"
|
|
android:background="#E4E4E4" />
|
|
|
|
<Button
|
|
android:id="@+id/positive"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_weight="1"
|
|
android:paddingTop="16dp"
|
|
android:paddingBottom="16dp"
|
|
android:background="@null"
|
|
android:gravity="center"
|
|
android:singleLine="true"
|
|
tools:text="Yes"
|
|
android:textColor="#38ADFF"
|
|
android:textSize="16sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |