dialog_tips.xml
1.9 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
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/solid_96_4"
android:backgroundTint="@color/white"
android:gravity="center_vertical"
android:orientation="vertical">
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:gravity="center"
android:textStyle="bold"
android:padding="12dp"
android:textColor="@color/black"
android:textSize="20sp" />
<com.br_technology.securitytrain_master.view.MyWebView
android:id="@+id/tv_mention"
android:layout_marginStart="@dimen/dp_10"
android:layout_marginEnd="10dp"
android:layout_width="match_parent"
android:layout_height="220dp"/>
<TextView
android:id="@+id/tv_ensure"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="16dp"
android:gravity="center"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:layout_marginTop="10dp"
android:background="@drawable/solid_25_4"
android:paddingStart="30dp"
android:paddingEnd="30dp"
android:text="确认"
android:textColor="@color/white"
android:textSize="16sp" />
</LinearLayout>
</FrameLayout>