mch_dialog_hideball.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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="260dp"
android:layout_height="126dp"
android:orientation="vertical"
android:background="@drawable/mch_helper_bg"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="重启游戏后即可重新显示悬浮球"
android:textSize="16dp"
android:textColor="#222222"
android:layout_marginTop="23dp"
android:layout_gravity="center_horizontal"
/>
<LinearLayout
android:layout_width="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="7dp"
android:layout_marginBottom="17dp"
android:layout_gravity="center_horizontal"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/btn_no_show"
android:layout_width="14dp"
android:layout_height="14dp"
android:background="@drawable/mch_common_btn_weixuan"
android:layout_marginRight="5dp"
android:layout_gravity="center_vertical"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="不再提示"
android:textColor="#999999"
android:textSize="14dp"
android:layout_gravity="center_vertical"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#c2c2c2"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:id="@+id/btn_mch_ok"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:text="继续隐藏"
android:gravity="center"
android:textSize="15dp"
android:textColor="#999999"
/>
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="#c2c2c2"
/>
<TextView
android:id="@+id/btn_mch_cancel"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:text="暂不隐藏"
android:gravity="center"
android:textSize="15dp"
android:textColor="#156FFE"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>