aiqu_dialog_tips.xml
3.1 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?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:background="@drawable/black_radio_bg"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/rl_title"
android:layout_width="match_parent"
android:layout_height="40dp"
android:gravity="center"
android:background="@drawable/deduction_btn_bg"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_explain"
android:layout_width="20dp"
android:layout_height="20dp"
android:visibility="gone"
android:layout_centerVertical="true"
android:textSize="14sp"
android:layout_marginRight="5dp"
android:gravity="center"
android:background="@drawable/round_mainfragment_top"
android:textColor="@color/orange"
android:layout_toLeftOf="@+id/tv_title"
android:text=" ? "/>
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="小号"
android:textColor="@color/common_white"
android:textSize="18sp" />
</RelativeLayout>
<TextView
android:id="@+id/tv_content"
android:layout_width="match_parent"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:textColor="@color/gray"
android:textSize="14sp"
android:layout_height="80dp"
android:gravity="center"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/bg_style" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_weight="1"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_cancel"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="取消"
android:textColor="@color/gray"
android:textSize="14sp" />
<View
android:id="@+id/view_line"
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/bg_style" />
<TextView
android:id="@+id/tv_confirm"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="确认"
android:textColor="@color/gray"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>