sales_dialog_layout.xml
3.29 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null"
android:gravity="center"
android:orientation="vertical" >
<LinearLayout
android:layout_width="400dp"
android:layout_height="wrap_content"
android:background="@drawable/white_cycle_bg"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="19dip"
android:lineSpacingExtra="5dp"
android:text="温馨提示"
android:textColor="@color/login_text_black"
android:textSize="22sp" />
<TextView
android:id="@+id/dialog_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="19dip"
android:lineSpacingExtra="5dp"
android:text="该导购员还未在系统中注册,您确定继续\n注册电子保卡?"
android:textColor="@color/login_text_black"
android:textSize="19sp" />
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:background="@color/line_bg"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/cancel_btn"
style="?android:attr/borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/white_cycle_bg"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:text="取消"
android:textColor="@color/login_text_black"
android:textSize="18sp" />
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@color/line_bg"
android:orientation="horizontal" />
<Button
android:id="@+id/go_btn"
style="?android:attr/borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/white_cycle_bg"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:text="继续"
android:textColor="@color/login_text_black"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>