client_Hale
2018-11-01 13e42c225bee24b61a9ca095f3539ff130f1b02c
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:background="@drawable/llsdk_bg_gary_nor"
    android:orientation="vertical">
 
    <RelativeLayout
        android:id="@+id/ll_title"
        android:layout_width="match_parent"
        android:layout_height="52dp"
        android:background="@drawable/llsdk_bg_white_nor"
        android:paddingTop="5dp">
 
        <ImageView
            android:id="@+id/ll_close_iv"
            android:layout_width="24dp"
            android:layout_height="24dp"
            android:layout_alignParentRight="true"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="10dp"
            android:scaleType="centerInside"
            android:src="@drawable/llsdk_ic_close" />
 
        <TextView
            android:id="@+id/ll_dialog_tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_marginLeft="6dp"
            android:text="支付中心"
            android:textColor="#ff7e00"
            android:textSize="17sp" />
 
        <View
            android:layout_width="match_parent"
            android:layout_height="2dp"
            android:layout_alignParentBottom="true"
            android:background="#d0d0d0" />
 
    </RelativeLayout>
 
 
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/ll_title"
        android:layout_marginBottom="5dp"
        android:scrollbars="none">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingLeft="15dp"
            android:paddingRight="15dp">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="5dp"
                android:layout_marginTop="5dp"
                android:text="购买信息"
                android:textColor="@color/llsdk_color_black"
                android:textSize="16sp" />
 
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/llsdk_bg_gray_border"
                android:orientation="vertical">
 
                <TextView
                    android:id="@+id/ll_pay_name"
                    android:layout_width="match_parent"
                    android:layout_height="38dp"
                    android:gravity="center_vertical"
                    android:paddingLeft="15dp"
                    android:paddingRight="5dp"
                    android:text="商品名称: "
                    android:textColor="@color/llsdk_color_black"
                    android:textSize="16sp" />
 
                <View
                    android:id="@+id/ll_pay_account_v"
                    android:layout_width="match_parent"
                    android:layout_height="2dp"
                    android:background="#d0d0d0" />
 
                <TextView
                    android:id="@+id/ll_pay_account"
                    android:layout_width="match_parent"
                    android:layout_height="38dp"
                    android:gravity="center_vertical"
                    android:paddingLeft="15dp"
                    android:paddingRight="5dp"
                    android:text="支付账号: "
                    android:textColor="@color/llsdk_color_black"
                    android:textSize="16sp" />
 
                <View
                    android:layout_width="match_parent"
                    android:layout_height="2dp"
                    android:background="#d0d0d0" />
 
                <TextView
                    android:id="@+id/ll_pay_money"
                    android:layout_width="match_parent"
                    android:layout_height="38dp"
                    android:gravity="center_vertical"
                    android:paddingLeft="15dp"
                    android:paddingRight="5dp"
                    android:text="支付金额: "
                    android:textColor="@color/llsdk_color_black"
                    android:textSize="16sp" />
 
            </LinearLayout>
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="5dp"
                android:layout_marginTop="5dp"
                android:text="请选择支付方式:"
                android:textColor="@color/llsdk_color_black"
                android:textSize="16sp" />
 
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="56dp">
 
                <ImageView
                    android:id="@+id/ll_pay_left"
                    android:layout_width="34dp"
                    android:layout_height="34dp"
                    android:layout_gravity="center_vertical"
                    android:scaleType="centerInside"
                    android:src="@drawable/llsdk_ic_back_big_left" />
 
                <com.linglei.sdklib.view.HorizontalListView
                    android:id="@+id/ll_pay_lv"
                    android:layout_width="0dp"
                    android:layout_height="50dp"
                    android:layout_gravity="center_vertical"
                    android:layout_weight="1"
                    android:scrollbars="horizontal" />
 
                <ImageView
                    android:id="@+id/ll_pay_right"
                    android:layout_width="34dp"
                    android:layout_height="34dp"
                    android:layout_gravity="center_vertical"
                    android:scaleType="centerInside"
                    android:src="@drawable/llsdk_ic_back_big_right" />
 
            </LinearLayout>
 
        </LinearLayout>
 
    </ScrollView>
</RelativeLayout>