squirrel_dialog.xml
2.9 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/squirrelLayoutRoot"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/nut_shape_dialog_background"
android:minWidth="230dp"
android:orientation="vertical">
<TextView
android:id="@+id/squirrelTextTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_gravity="center_horizontal"
android:gravity="center"
android:textColor="@color/nut_color_black"
android:textSize="15sp"
android:textStyle="bold" />
<TextView
android:id="@+id/squirrelTextMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="12dp"
android:layout_marginRight="15dp"
android:gravity="center"
android:textColor="@color/nut_color_black"
android:textSize="13sp" />
<ImageView
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="15dp"
android:background="@color/nut_color_divide" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="35dp"
android:orientation="horizontal">
<Button
android:id="@+id/squirrelBtnCancel"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/nut_selector_btn_cancel"
android:gravity="center"
android:textColor="@color/squirrel_color_primary"
android:textSize="14sp" />
<View
android:id="@+id/squirrelVerLine"
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/nut_color_divide" />
<Button
android:id="@+id/squirrelBtnSure"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/nut_selector_btn_sure"
android:gravity="center"
android:textColor="@color/nut_color_black"
android:textSize="14sp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</LinearLayout>