You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.4 KiB
XML
82 lines
2.4 KiB
XML
<?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="@drawable/dialog_radius"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80px"
|
|
android:gravity="center"
|
|
android:text="提示"
|
|
android:textColor="#000"
|
|
android:textSize="40px" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="@color/gray" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_msg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="160px"
|
|
android:gravity="center"
|
|
android:text="请选择"
|
|
android:textSize="35px" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="@color/gray" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_cancel"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70px"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:padding="10px"
|
|
android:text="继续编辑"
|
|
android:textColor="@color/bule"
|
|
android:textSize="@dimen/ilTextSize"
|
|
android:visibility="visible" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="@color/gray" />
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_xg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70px"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:padding="10px"
|
|
android:text="修改督办详情"
|
|
android:textColor="@color/bule"
|
|
android:textSize="@dimen/ilTextSize"
|
|
android:visibility="visible" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="@color/gray" />
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_xd"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70px"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:padding="10px"
|
|
android:text="工作督办下达"
|
|
android:textColor="@color/bule"
|
|
android:textSize="@dimen/ilTextSize"
|
|
android:visibility="visible" />
|
|
|
|
</LinearLayout>
|