xfgame_exit_dialog_view.xml
2.4 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="@dimen/xfgame_layout_width_small"
android:layout_height="wrap_content"
android:background="@drawable/xfgame_auth_online_tip"
android:orientation="vertical"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingTop="@dimen/xfgame_space_normal"
android:textColor="@color/xfgame_text_000000"
android:textSize="@dimen/xfgame_font_size_18"
android:text="@string/xfgame_tip"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/xfgame_space_big"
android:paddingBottom="@dimen/xfgame_space_normal"
android:paddingLeft="@dimen/xfgame_space_big"
android:paddingRight="@dimen/xfgame_space_big"
android:layout_gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/xfgame_exit_dialog_msg_bt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/xfgame_tip_content"/>
</LinearLayout>
<Button
android:id="@+id/xfgame_exit_dialog_exit_bt"
android:layout_width="150dp"
style="@style/xfgame.button.hoyo_zero"
android:text="@string/xfgame_exit_game"
android:layout_marginTop="@dimen/xfgame_space_small"
android:layout_marginBottom="@dimen/xfgame_space_normal"
android:layout_gravity="center"/>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>