rbgame_dialog_update.xml
3.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
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/update_all_li"
android:orientation="vertical"
android:layout_centerInParent="true"
android:background="@drawable/rbgame_update"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/update_title_li"
android:orientation="horizontal"
android:paddingTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/update_icon"
android:layout_weight="1"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/update_title"
android:layout_weight="1"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="#000000"
android:padding="5dp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
android:id="@+id/update_content_li"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/update_content"
android:layout_margin="10dp"
android:gravity="center"
android:textColor="#151414"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_marginBottom="10dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="取消"
android:background="@drawable/rbgame_btn_shape_ash"
android:layout_marginStart="10dp"
android:layout_marginEnd="5dp"
android:textColor="#ffffff"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:gravity="center"
android:id="@+id/update_cancel"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/update_confirm"
android:paddingTop="5dp"
android:layout_marginStart="5dp"
android:layout_marginEnd="10dp"
android:textColor="#ffffff"
android:background="@drawable/rbgame_btn_shape_red"
android:paddingBottom="5dp"
android:layout_weight="1"
android:text="更新"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</RelativeLayout>