ordertipdialog.xml
3.49 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutRoot"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:background="@drawable/shape_order"
android:orientation="vertical"
android:windowIsFloating="true">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:orientation="vertical"
android:layout_margin="@dimen/dp_26"
android:background="@drawable/report_white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/dp_8"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textColor="@color/txt_gray"
android:text="请前往 "
android:gravity="right"
android:textSize="@dimen/size_dp_18"/>
<TextView
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textColor="@color/txt_link_blue"
android:text="订购中心"
android:textSize="@dimen/size_dp_18"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:orientation="vertical">
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_margin="@dimen/dp_4"
android:text="订购“智能校卫"
android:textColor="@color/txt_gray"
android:textSize="@dimen/size_dp_18"/>
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_margin="@dimen/dp_5"
android:text="才能使用相关应用功能"
android:textColor="@color/txt_gray"
android:textSize="@dimen/size_dp_18"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginBottom="@dimen/dp_10"
android:orientation="horizontal">
<Button
android:layout_width="120dp"
android:layout_height="wrap_content"
android:background="@drawable/button_shape"
android:layout_marginLeft="@dimen/dp_26"
android:text="取消"
android:textSize="@dimen/size_dp_18" />
<Button
android:layout_width="120dp"
android:layout_height="wrap_content"
android:background="@drawable/button_shape"
android:layout_marginLeft="@dimen/dp_10"
android:text="前往订购"
android:textSize="@dimen/size_dp_18" />
</LinearLayout>
</LinearLayout>