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.
46 lines
1.3 KiB
XML
46 lines
1.3 KiB
XML
|
7 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
|
||
|
|
<data>
|
||
|
|
|
||
|
|
</data>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="400dp"
|
||
|
|
android:background="@drawable/text_bg"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
style="@style/text_info"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="45dp"
|
||
|
|
android:paddingLeft="20dp"
|
||
|
|
android:paddingRight="20dp"
|
||
|
|
android:text="查看图片" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="2dp"
|
||
|
|
android:background="#e1e1e1" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/dialog_img"
|
||
|
|
android:layout_width="380dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_height="wrap_content"/>
|
||
|
|
|
||
|
|
|
||
|
|
<Button
|
||
|
|
style="@style/button_style"
|
||
|
|
android:id="@+id/dialog_img_dis"
|
||
|
|
android:layout_width="200dp"
|
||
|
|
android:layout_height="50dp"
|
||
|
|
android:layout_marginTop="5dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:text="关闭" />
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
</layout>
|