|
@@ -20,25 +20,37 @@
|
20
|
20
|
android:gravity="center_horizontal"
|
21
|
21
|
android:orientation="vertical"
|
22
|
22
|
android:padding="15dp">
|
|
23
|
+
|
23
|
24
|
<androidx.core.widget.NestedScrollView
|
24
|
25
|
android:layout_width="match_parent"
|
25
|
26
|
android:layout_height="0dp"
|
26
|
27
|
android:layout_weight="1">
|
|
28
|
+
|
27
|
29
|
<androidx.appcompat.widget.LinearLayoutCompat
|
28
|
30
|
android:layout_width="match_parent"
|
29
|
|
- android:layout_height="match_parent">
|
|
31
|
+ android:layout_height="match_parent"
|
|
32
|
+ android:orientation="vertical">
|
|
33
|
+
|
30
|
34
|
<TextView
|
31
|
35
|
android:id="@+id/dialog_title_tv"
|
32
|
36
|
android:layout_width="match_parent"
|
33
|
37
|
android:layout_height="wrap_content"
|
34
|
|
- android:layout_weight="1" />
|
|
38
|
+ android:layout_weight="1"
|
|
39
|
+ android:gravity="center"
|
|
40
|
+ android:textColor="#253A70"
|
|
41
|
+ android:textSize="22sp" />
|
35
|
42
|
|
36
|
43
|
<TextView
|
37
|
44
|
android:id="@+id/dialog_content_tv"
|
38
|
45
|
android:layout_width="match_parent"
|
39
|
|
- android:layout_height="wrap_content" />
|
|
46
|
+ android:layout_height="wrap_content"
|
|
47
|
+ android:layout_marginTop="10dp"
|
|
48
|
+ android:gravity="center"
|
|
49
|
+ android:textColor="#253A70"
|
|
50
|
+ android:textSize="14sp" />
|
40
|
51
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
41
|
52
|
</androidx.core.widget.NestedScrollView>
|
|
53
|
+
|
42
|
54
|
<Button
|
43
|
55
|
android:id="@+id/dialog_close_btn"
|
44
|
56
|
android:layout_width="350dp"
|