dialog_notice.xml
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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="wrap_content"
android:layout_marginStart="40dp"
android:layout_marginEnd="40dp"
android:background="@drawable/solid_ff_4"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/logo"
android:scaleType="fitXY"
android:src="@mipmap/icon_notice" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="220dp"
android:layout_marginHorizontal="16dp"
android:layout_marginTop="32dp"
android:scrollbars="none">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="@color/color_252"
android:textSize="18sp" />
</androidx.core.widget.NestedScrollView>
<TextView
android:id="@+id/determine"
android:layout_width="130dp"
android:layout_height="45dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="15dp"
android:layout_marginBottom="20dp"
android:background="@drawable/solid_25_4"
android:gravity="center"
android:text="确定"
android:textColor="@color/white"
android:textSize="15sp" />
</LinearLayout>