attention_view.xml
5.03 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_10"
android:gravity="center">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="@dimen/dp_141"
android:layout_height="@dimen/dp_149"
android:layout_marginTop="@dimen/dp_3"
android:src="@drawable/erweimadi" />
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="@dimen/dp_18"
android:layout_height="@dimen/dp_14"
android:layout_marginStart="@dimen/dp_7"
android:src="@drawable/attention_1" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/dp_10"
android:gravity="center"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/first_step_text"
android:textColor="@color/white"
android:textSize="@dimen/sp_11" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_6"
android:text="@string/scan_qr_code_text"
android:textColor="@color/white"
android:textSize="@dimen/sp_9" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_4"
android:text="@string/latest_news_text"
android:textColor="@color/white"
android:textSize="@dimen/sp_9" />
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="@dimen/dp_81"
android:layout_height="@dimen/dp_81"
android:layout_marginTop="@dimen/dp_8"
android:src="@drawable/qrcode" />
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_9">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="@dimen/dp_242"
android:layout_height="@dimen/dp_149"
android:layout_marginTop="@dimen/dp_3"
android:scaleType="fitXY"
android:src="@drawable/erweimadi" />
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="@dimen/dp_18"
android:layout_height="@dimen/dp_14"
android:layout_marginStart="@dimen/dp_7"
android:src="@drawable/attention_2" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/dp_10"
android:gravity="center"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/second_step_text"
android:textColor="@color/white"
android:textSize="@dimen/sp_11" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_6"
android:text="@string/open_accounts_text"
android:textColor="@color/white"
android:textSize="@dimen/sp_9" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_4"
android:text="@string/scan_qr_bind_text"
android:textColor="@color/white"
android:textSize="@dimen/sp_9" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_qr"
android:layout_width="@dimen/dp_81"
android:layout_height="@dimen/dp_81"
android:layout_marginTop="@dimen/dp_8" />
</LinearLayout>
</RelativeLayout>
</androidx.appcompat.widget.LinearLayoutCompat>