order_setting.xml
4.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:orientation="vertical">
<com.fish.drp.div.DrpTitleBar
android:id="@+id/actionbar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<View style="@style/cut_line_for_cart" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/feedback_editlayout_bg"
android:orientation="vertical">
<ListView
android:id="@+id/commoditylist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:dividerHeight="0.5dp"
android:divider="@color/gray"
/>
<View style="@style/cut_line_for_cart" />
<include layout="@layout/cart_receiveaddress" />
<LinearLayout
android:id="@+id/llypaytype"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@mipmap/feedback_editlayout_bg"
android:visibility="gone">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:layout_weight="3"
android:gravity="center_vertical"
android:text="@string/cart_bottom_pay_type"
android:textColor="@color/member_black"
android:textSize="13dp" />
<TextView
android:id="@+id/txtcartpaytype"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginLeft="25dp"
android:layout_weight="3"
android:gravity="right|center"
android:text="支付宝"
android:textColor="@color/main_black"
android:textSize="13dp" />
<ImageView
android:id="@+id/img_wipeamount"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="center"
android:paddingLeft="3dp"
android:src="@mipmap/ic_arrow_right" />
</LinearLayout>
<View
style="@style/cut_line_for_cart"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:visibility="gone"/>
<LinearLayout
android:id="@+id/llyorderremark"
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="@mipmap/feedback_editlayout_bg">
<EditText
android:id="@+id/edtorderSummary"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:layout_weight="6"
android:background="@null"
android:gravity="center_vertical"
android:hint="@string/cart_bottom_order_remark"
android:textColor="@color/main_black"
android:textColorHint="@color/main_gray"
android:singleLine="true"
android:ellipsize="end"
android:textSize="@dimen/text_size_14"></EditText>
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="center"
android:src="@mipmap/ic_arrow_right" />
</LinearLayout>
<View style="@style/cut_line_for_cart" />
</LinearLayout>
</ScrollView>
<View style="@style/cut_line_for_cart" />
<include
android:id="@+id/cart_bottombar"
layout="@layout/order_setting_bottom_bar"
android:layout_width="fill_parent"
android:layout_height="54dp"
android:layout_alignParentBottom="true"></include>
</LinearLayout>