react-native-mytatva-rn-sdk 1.2.32 → 1.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +144 -141
- package/android/src/main/AndroidManifest.xml +4 -1
- package/android/src/main/AndroidManifestNew.xml +141 -138
- package/android/src/main/java/com/mytatvarnsdk/CgmTrackyLibModule.kt +71 -71
- package/android/src/main/java/com/mytatvarnsdk/MainApplication.kt +4 -4
- package/android/src/main/java/com/mytatvarnsdk/activity/ConnectSensorActivity.kt +13 -2
- package/android/src/main/java/com/mytatvarnsdk/activity/PermissionActivity.kt +6 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/PlaceSensorActivity.kt +82 -65
- package/android/src/main/java/com/mytatvarnsdk/activity/PlaceTransmitterActivity.kt +106 -89
- package/android/src/main/java/com/mytatvarnsdk/activity/SearchTransmitterActivity.kt +13 -7
- package/android/src/main/java/com/mytatvarnsdk/activity/SensorConnectSuccessActivity.kt +6 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/StartCGMActivity.kt +63 -57
- package/android/src/main/java/com/mytatvarnsdk/activity/VideoActivity.kt +94 -0
- package/android/src/main/res/drawable/radio_button_background.xml +1 -1
- package/android/src/main/res/drawable/radio_checked.xml +1 -1
- package/android/src/main/res/layout/activity_connect_sensor.xml +497 -495
- package/android/src/main/res/layout/activity_place_sensor.xml +250 -238
- package/android/src/main/res/layout/activity_place_transmitter.xml +219 -207
- package/android/src/main/res/layout/activity_search_transmitter.xml +716 -714
- package/android/src/main/res/layout/activity_start_cgmactivity.xml +153 -153
- package/android/src/main/res/layout/activity_video.xml +32 -0
- package/android/src/main/res/values/styles.xml +1 -3
- package/ios/Database/KLTDatabaseHandler.m +8 -0
- package/package.json +1 -1
|
@@ -1,252 +1,264 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
2
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
android:layout_width="match_parent"
|
|
6
|
-
android:layout_height="match_parent">
|
|
7
|
-
|
|
8
|
-
<androidx.appcompat.widget.AppCompatImageView
|
|
9
|
-
android:layout_width="match_parent"
|
|
10
|
-
android:layout_height="180dp"
|
|
11
|
-
android:layout_gravity="bottom"
|
|
12
|
-
app:srcCompat="@drawable/bg_design" />
|
|
13
|
-
|
|
14
|
-
<androidx.constraintlayout.widget.ConstraintLayout
|
|
15
|
-
android:id="@+id/clLayout"
|
|
3
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
4
|
+
android:id="@+id/main"
|
|
16
5
|
android:layout_width="match_parent"
|
|
17
6
|
android:layout_height="match_parent">
|
|
18
7
|
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
app:layout_constraintTop_toTopOf="parent" />
|
|
8
|
+
<androidx.appcompat.widget.AppCompatImageView
|
|
9
|
+
android:layout_width="match_parent"
|
|
10
|
+
android:layout_height="180dp"
|
|
11
|
+
android:layout_gravity="bottom"
|
|
12
|
+
app:srcCompat="@drawable/bg_design" />
|
|
25
13
|
|
|
26
14
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
app:layout_constraintTop_toBottomOf="@+id/toolbar">
|
|
31
|
-
|
|
32
|
-
<View
|
|
33
|
-
android:id="@+id/view1"
|
|
34
|
-
android:layout_width="0dp"
|
|
35
|
-
android:layout_height="4dp"
|
|
36
|
-
android:layout_marginHorizontal="5dp"
|
|
37
|
-
android:layout_marginVertical="10dp"
|
|
38
|
-
android:background="@drawable/bg_green_progress"
|
|
39
|
-
app:layout_constraintEnd_toStartOf="@id/view2"
|
|
40
|
-
app:layout_constraintHorizontal_chainStyle="spread"
|
|
41
|
-
app:layout_constraintHorizontal_weight="1.3"
|
|
42
|
-
app:layout_constraintStart_toStartOf="parent"
|
|
43
|
-
app:layout_constraintTop_toTopOf="parent" />
|
|
44
|
-
|
|
45
|
-
<TextView
|
|
46
|
-
android:id="@+id/tvDivide1"
|
|
47
|
-
android:layout_width="wrap_content"
|
|
48
|
-
android:layout_height="wrap_content"
|
|
49
|
-
android:layout_marginTop="5dp"
|
|
50
|
-
android:fontFamily="@font/roboto_semibold"
|
|
51
|
-
android:text="Place Sensor"
|
|
52
|
-
android:textColor="#2D3282"
|
|
53
|
-
android:textSize="11sp"
|
|
54
|
-
app:layout_constraintEnd_toEndOf="@+id/view4"
|
|
55
|
-
app:layout_constraintStart_toStartOf="@+id/view4"
|
|
56
|
-
app:layout_constraintTop_toBottomOf="@+id/view4" />
|
|
57
|
-
|
|
58
|
-
<View
|
|
59
|
-
android:id="@+id/view2"
|
|
60
|
-
android:layout_width="0dp"
|
|
61
|
-
android:layout_height="4dp"
|
|
62
|
-
android:layout_marginHorizontal="5dp"
|
|
63
|
-
android:layout_marginVertical="10dp"
|
|
64
|
-
android:background="@drawable/bg_green_progress"
|
|
65
|
-
app:layout_constraintEnd_toStartOf="@id/view3"
|
|
66
|
-
app:layout_constraintHorizontal_weight="1.3"
|
|
67
|
-
app:layout_constraintStart_toEndOf="@id/view1"
|
|
68
|
-
app:layout_constraintTop_toTopOf="parent" />
|
|
69
|
-
|
|
70
|
-
<TextView
|
|
71
|
-
android:id="@+id/tvDivide2"
|
|
72
|
-
android:layout_width="wrap_content"
|
|
73
|
-
android:layout_height="wrap_content"
|
|
74
|
-
android:layout_marginTop="5dp"
|
|
75
|
-
android:fontFamily="@font/roboto_semibold"
|
|
76
|
-
android:text="Place Transmitter"
|
|
77
|
-
android:textColor="#D0D5DD"
|
|
78
|
-
android:textSize="11sp"
|
|
79
|
-
app:layout_constraintEnd_toEndOf="@+id/view5"
|
|
80
|
-
app:layout_constraintStart_toStartOf="@+id/view5"
|
|
81
|
-
app:layout_constraintTop_toBottomOf="@+id/view5" />
|
|
82
|
-
|
|
83
|
-
<View
|
|
84
|
-
android:id="@+id/view3"
|
|
85
|
-
android:layout_width="0dp"
|
|
86
|
-
android:layout_height="4dp"
|
|
87
|
-
android:layout_marginHorizontal="5dp"
|
|
88
|
-
android:layout_marginVertical="10dp"
|
|
89
|
-
android:background="@drawable/bg_green_progress"
|
|
90
|
-
app:layout_constraintEnd_toStartOf="@id/view4"
|
|
91
|
-
app:layout_constraintHorizontal_weight="1.3"
|
|
92
|
-
app:layout_constraintStart_toEndOf="@id/view2"
|
|
93
|
-
app:layout_constraintTop_toTopOf="parent" />
|
|
94
|
-
|
|
95
|
-
<View
|
|
96
|
-
android:id="@+id/view4"
|
|
97
|
-
android:layout_width="0dp"
|
|
98
|
-
android:layout_height="4dp"
|
|
99
|
-
android:layout_marginHorizontal="5dp"
|
|
100
|
-
android:layout_marginVertical="10dp"
|
|
101
|
-
android:background="@drawable/bg_dark_blue"
|
|
102
|
-
app:layout_constraintEnd_toStartOf="@id/view5"
|
|
103
|
-
app:layout_constraintHorizontal_weight="3"
|
|
104
|
-
app:layout_constraintStart_toEndOf="@id/view3"
|
|
105
|
-
app:layout_constraintTop_toTopOf="parent" />
|
|
106
|
-
|
|
107
|
-
<View
|
|
108
|
-
android:id="@+id/view5"
|
|
109
|
-
android:layout_width="0dp"
|
|
110
|
-
android:layout_height="4dp"
|
|
111
|
-
android:layout_marginHorizontal="5dp"
|
|
112
|
-
android:layout_marginVertical="10dp"
|
|
113
|
-
android:background="@drawable/bg_grey"
|
|
114
|
-
app:layout_constraintEnd_toEndOf="parent"
|
|
115
|
-
app:layout_constraintHorizontal_weight="3"
|
|
116
|
-
app:layout_constraintStart_toEndOf="@id/view4"
|
|
117
|
-
app:layout_constraintTop_toTopOf="parent" />
|
|
15
|
+
android:id="@+id/clLayout"
|
|
16
|
+
android:layout_width="match_parent"
|
|
17
|
+
android:layout_height="match_parent">
|
|
118
18
|
|
|
119
|
-
|
|
19
|
+
<include
|
|
20
|
+
android:id="@+id/toolbar"
|
|
21
|
+
layout="@layout/layout_toolbar"
|
|
22
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
23
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
24
|
+
app:layout_constraintTop_toTopOf="parent" />
|
|
120
25
|
|
|
26
|
+
<androidx.constraintlayout.widget.ConstraintLayout
|
|
27
|
+
android:id="@+id/llProgress"
|
|
28
|
+
android:layout_width="match_parent"
|
|
29
|
+
android:layout_height="wrap_content"
|
|
30
|
+
app:layout_constraintTop_toBottomOf="@+id/toolbar">
|
|
121
31
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
32
|
+
<View
|
|
33
|
+
android:id="@+id/view1"
|
|
34
|
+
android:layout_width="0dp"
|
|
35
|
+
android:layout_height="4dp"
|
|
36
|
+
android:layout_marginHorizontal="5dp"
|
|
37
|
+
android:layout_marginVertical="10dp"
|
|
38
|
+
android:background="@drawable/bg_green_progress"
|
|
39
|
+
app:layout_constraintEnd_toStartOf="@id/view2"
|
|
40
|
+
app:layout_constraintHorizontal_chainStyle="spread"
|
|
41
|
+
app:layout_constraintHorizontal_weight="1.3"
|
|
42
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
43
|
+
app:layout_constraintTop_toTopOf="parent" />
|
|
44
|
+
|
|
45
|
+
<TextView
|
|
46
|
+
android:id="@+id/tvDivide1"
|
|
47
|
+
android:layout_width="wrap_content"
|
|
48
|
+
android:layout_height="wrap_content"
|
|
49
|
+
android:layout_marginTop="5dp"
|
|
50
|
+
android:fontFamily="@font/roboto_semibold"
|
|
51
|
+
android:text="Place Sensor"
|
|
52
|
+
android:textColor="#2D3282"
|
|
53
|
+
android:textSize="11sp"
|
|
54
|
+
app:layout_constraintEnd_toEndOf="@+id/view4"
|
|
55
|
+
app:layout_constraintStart_toStartOf="@+id/view4"
|
|
56
|
+
app:layout_constraintTop_toBottomOf="@+id/view4" />
|
|
57
|
+
|
|
58
|
+
<View
|
|
59
|
+
android:id="@+id/view2"
|
|
60
|
+
android:layout_width="0dp"
|
|
61
|
+
android:layout_height="4dp"
|
|
62
|
+
android:layout_marginHorizontal="5dp"
|
|
63
|
+
android:layout_marginVertical="10dp"
|
|
64
|
+
android:background="@drawable/bg_green_progress"
|
|
65
|
+
app:layout_constraintEnd_toStartOf="@id/view3"
|
|
66
|
+
app:layout_constraintHorizontal_weight="1.3"
|
|
67
|
+
app:layout_constraintStart_toEndOf="@id/view1"
|
|
68
|
+
app:layout_constraintTop_toTopOf="parent" />
|
|
69
|
+
|
|
70
|
+
<TextView
|
|
71
|
+
android:id="@+id/tvDivide2"
|
|
72
|
+
android:layout_width="wrap_content"
|
|
73
|
+
android:layout_height="wrap_content"
|
|
74
|
+
android:layout_marginTop="5dp"
|
|
75
|
+
android:fontFamily="@font/roboto_semibold"
|
|
76
|
+
android:text="Place Transmitter"
|
|
77
|
+
android:textColor="#D0D5DD"
|
|
78
|
+
android:textSize="11sp"
|
|
79
|
+
app:layout_constraintEnd_toEndOf="@+id/view5"
|
|
80
|
+
app:layout_constraintStart_toStartOf="@+id/view5"
|
|
81
|
+
app:layout_constraintTop_toBottomOf="@+id/view5" />
|
|
82
|
+
|
|
83
|
+
<View
|
|
84
|
+
android:id="@+id/view3"
|
|
85
|
+
android:layout_width="0dp"
|
|
86
|
+
android:layout_height="4dp"
|
|
87
|
+
android:layout_marginHorizontal="5dp"
|
|
88
|
+
android:layout_marginVertical="10dp"
|
|
89
|
+
android:background="@drawable/bg_green_progress"
|
|
90
|
+
app:layout_constraintEnd_toStartOf="@id/view4"
|
|
91
|
+
app:layout_constraintHorizontal_weight="1.3"
|
|
92
|
+
app:layout_constraintStart_toEndOf="@id/view2"
|
|
93
|
+
app:layout_constraintTop_toTopOf="parent" />
|
|
94
|
+
|
|
95
|
+
<View
|
|
96
|
+
android:id="@+id/view4"
|
|
97
|
+
android:layout_width="0dp"
|
|
98
|
+
android:layout_height="4dp"
|
|
99
|
+
android:layout_marginHorizontal="5dp"
|
|
100
|
+
android:layout_marginVertical="10dp"
|
|
101
|
+
android:background="@drawable/bg_dark_blue"
|
|
102
|
+
app:layout_constraintEnd_toStartOf="@id/view5"
|
|
103
|
+
app:layout_constraintHorizontal_weight="3"
|
|
104
|
+
app:layout_constraintStart_toEndOf="@id/view3"
|
|
105
|
+
app:layout_constraintTop_toTopOf="parent" />
|
|
106
|
+
|
|
107
|
+
<View
|
|
108
|
+
android:id="@+id/view5"
|
|
109
|
+
android:layout_width="0dp"
|
|
110
|
+
android:layout_height="4dp"
|
|
111
|
+
android:layout_marginHorizontal="5dp"
|
|
112
|
+
android:layout_marginVertical="10dp"
|
|
113
|
+
android:background="@drawable/bg_grey"
|
|
114
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
115
|
+
app:layout_constraintHorizontal_weight="3"
|
|
116
|
+
app:layout_constraintStart_toEndOf="@id/view4"
|
|
117
|
+
app:layout_constraintTop_toTopOf="parent" />
|
|
118
|
+
|
|
119
|
+
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
192
120
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
121
|
+
|
|
122
|
+
<View
|
|
123
|
+
android:id="@+id/divider"
|
|
124
|
+
android:layout_width="match_parent"
|
|
125
|
+
android:layout_height="2dp"
|
|
126
|
+
android:layout_marginTop="5dp"
|
|
127
|
+
android:background="#F2F4F7"
|
|
128
|
+
app:layout_constraintTop_toBottomOf="@+id/llProgress" />
|
|
129
|
+
|
|
130
|
+
<!-- Main Content -->
|
|
131
|
+
<TextView
|
|
132
|
+
android:id="@+id/tvStep"
|
|
133
|
+
android:layout_width="wrap_content"
|
|
134
|
+
android:layout_height="wrap_content"
|
|
135
|
+
android:layout_marginTop="16dp"
|
|
136
|
+
android:fontFamily="@font/roboto_semibold"
|
|
137
|
+
android:text="STEP 4"
|
|
138
|
+
android:textColor="#667085"
|
|
139
|
+
android:textSize="13sp"
|
|
140
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
141
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
142
|
+
app:layout_constraintTop_toBottomOf="@id/divider" />
|
|
143
|
+
|
|
144
|
+
<TextView
|
|
145
|
+
android:id="@+id/tvTitle"
|
|
146
|
+
android:layout_width="wrap_content"
|
|
147
|
+
android:layout_height="wrap_content"
|
|
148
|
+
android:layout_marginTop="8dp"
|
|
149
|
+
android:fontFamily="@font/playfairdisplay_bold"
|
|
150
|
+
android:gravity="center"
|
|
151
|
+
android:text="Put on the sensor"
|
|
152
|
+
android:textAlignment="center"
|
|
153
|
+
android:textColor="#101828"
|
|
154
|
+
android:textSize="24sp"
|
|
155
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
156
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
157
|
+
app:layout_constraintTop_toBottomOf="@id/tvStep" />
|
|
158
|
+
|
|
159
|
+
<TextView
|
|
160
|
+
android:id="@+id/tvInstructions"
|
|
161
|
+
android:layout_width="0dp"
|
|
162
|
+
android:layout_height="wrap_content"
|
|
163
|
+
android:layout_marginStart="32dp"
|
|
164
|
+
android:layout_marginTop="8dp"
|
|
165
|
+
android:layout_marginEnd="32dp"
|
|
166
|
+
android:fontFamily="@font/roboto_regular"
|
|
167
|
+
android:gravity="center"
|
|
168
|
+
android:text="Watch the below video or follow the steps to put on your sensor"
|
|
169
|
+
android:textAlignment="center"
|
|
170
|
+
android:textColor="#667085"
|
|
171
|
+
android:textSize="14sp"
|
|
172
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
173
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
174
|
+
app:layout_constraintTop_toBottomOf="@id/tvTitle" />
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
<androidx.cardview.widget.CardView
|
|
178
|
+
android:id="@+id/cvVideo"
|
|
179
|
+
android:layout_width="match_parent"
|
|
180
|
+
android:layout_height="240dp"
|
|
181
|
+
android:layout_marginHorizontal="20dp"
|
|
182
|
+
android:layout_marginTop="24dp"
|
|
183
|
+
app:cardCornerRadius="16dp"
|
|
184
|
+
app:cardElevation="4dp"
|
|
185
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
186
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
187
|
+
app:layout_constraintTop_toBottomOf="@id/tvInstructions">
|
|
188
|
+
|
|
189
|
+
<FrameLayout
|
|
190
|
+
android:layout_width="match_parent"
|
|
191
|
+
android:layout_height="match_parent">
|
|
192
|
+
|
|
193
|
+
<androidx.appcompat.widget.AppCompatImageView
|
|
194
|
+
android:id="@+id/ivTransmitter"
|
|
195
|
+
android:layout_width="match_parent"
|
|
196
|
+
android:layout_height="match_parent"
|
|
197
|
+
android:scaleType="centerCrop"
|
|
198
|
+
android:src="@drawable/img_male" />
|
|
199
|
+
|
|
200
|
+
<androidx.appcompat.widget.AppCompatImageView
|
|
201
|
+
android:id="@+id/ivPlay"
|
|
202
|
+
android:layout_width="120dp"
|
|
203
|
+
android:layout_height="120dp"
|
|
204
|
+
android:layout_gravity="center" />
|
|
205
|
+
</FrameLayout>
|
|
206
|
+
|
|
207
|
+
</androidx.cardview.widget.CardView>
|
|
208
|
+
|
|
209
|
+
<com.pierfrancescosoffritti.androidyoutubeplayer.core.player.views.YouTubePlayerView
|
|
210
|
+
android:id="@+id/youtube_player_view"
|
|
211
|
+
android:layout_width="match_parent"
|
|
212
|
+
android:layout_height="wrap_content"
|
|
213
|
+
android:layout_marginTop="24dp"
|
|
214
|
+
android:visibility="gone"
|
|
215
|
+
app:autoPlay="true"
|
|
216
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
217
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
218
|
+
app:layout_constraintTop_toBottomOf="@id/tvInstructions"
|
|
219
|
+
app:videoId="r5Zemc4R044" />
|
|
220
|
+
|
|
221
|
+
<TextView
|
|
222
|
+
android:id="@+id/tvNote"
|
|
223
|
+
android:layout_width="match_parent"
|
|
224
|
+
android:layout_height="wrap_content"
|
|
225
|
+
android:layout_marginHorizontal="20dp"
|
|
226
|
+
android:layout_marginTop="20dp"
|
|
227
|
+
android:background="@drawable/bg_yellow_top"
|
|
228
|
+
android:fontFamily="@font/roboto_bold"
|
|
229
|
+
android:padding="10dp"
|
|
230
|
+
android:text="Important Note"
|
|
231
|
+
android:textColor="#101828"
|
|
232
|
+
android:textSize="16sp"
|
|
233
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
234
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
235
|
+
app:layout_constraintTop_toBottomOf="@+id/cvVideo" />
|
|
236
|
+
|
|
237
|
+
<TextView
|
|
238
|
+
android:layout_width="match_parent"
|
|
239
|
+
android:layout_height="wrap_content"
|
|
240
|
+
android:layout_marginHorizontal="20dp"
|
|
241
|
+
android:background="@drawable/bg_yellow_bottom"
|
|
242
|
+
android:fontFamily="@font/roboto_regular"
|
|
243
|
+
android:paddingHorizontal="10dp"
|
|
244
|
+
android:paddingVertical="15dp"
|
|
245
|
+
android:text="Don’t unlock your sensor before putting it the sensor on your skin"
|
|
246
|
+
android:textColor="#101828"
|
|
247
|
+
android:textSize="15sp"
|
|
248
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
249
|
+
app:layout_constraintStart_toStartOf="parent"
|
|
250
|
+
app:layout_constraintTop_toBottomOf="@+id/tvNote" />
|
|
251
|
+
|
|
252
|
+
<include
|
|
253
|
+
android:id="@+id/commonButton"
|
|
254
|
+
layout="@layout/layout_button"
|
|
255
|
+
android:layout_width="match_parent"
|
|
256
|
+
android:layout_height="wrap_content"
|
|
257
|
+
app:layout_constraintBottom_toBottomOf="parent"
|
|
258
|
+
app:layout_constraintEnd_toEndOf="parent"
|
|
259
|
+
app:layout_constraintStart_toStartOf="parent" />
|
|
260
|
+
|
|
261
|
+
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
250
262
|
|
|
251
263
|
|
|
252
264
|
</FrameLayout>
|