wangguan
2020-12-24 4943b4638e01a7d63dda9056a28f0e639b3cf894
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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@null"
    >
 
 
  <LinearLayout
      android:id="@+id/mContent"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@null"
      android:orientation="vertical"
      >
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/bjskres_white"
        android:layout_weight="1"
        >
 
      <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:text="支付中心"
          android:textSize="20sp"
          android:textColor="@color/bjskres_black_de"
          />
      <ImageView
          android:id="@+id/p_close"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentRight="true"
          android:layout_centerVertical="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:src="@drawable/bjskres_icon_cancel"
          />
 
 
    </RelativeLayout>
 
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/bjskres_bg_sdk"
        android:orientation="vertical"
        android:gravity="center"
        android:layout_weight="2"
        >
      <TextView
          android:id="@+id/p_name"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:text="商品名称"
          android:textSize="15sp"
          android:textColor="@color/bjskres_gray_dark"
          />
      <TextView
          android:id="@+id/p_value"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:text="商品价格"
          android:textSize="15sp"
          android:textColor="@color/bjskres_gray_dark"
          />
 
 
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/bjskres_white"
        android:orientation="horizontal"
        android:gravity="center_vertical|left"
        android:padding="10dip"
        android:layout_weight="3"
        >
 
      <LinearLayout
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          >
 
 
      </LinearLayout>
 
      <TextView
          android:id="@+id/p_1"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:text="微信"
          android:textSize="15sp"
          android:textColor="@color/bjskres_black_de"
          android:drawableTop="@drawable/bjskres_icon_p1"
          android:layout_weight="1"
          />
 
      <TextView
          android:id="@+id/p_2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:text="支付宝"
          android:textSize="15sp"
          android:textColor="@color/bjskres_black_de"
          android:drawableTop="@drawable/bjskres_icon_p2"
          android:layout_weight="1"
          />
      <TextView
          android:id="@+id/p_3"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:contentDescription="@string/bjskres_img_desc"
          android:gravity="center"
          android:padding="5dip"
          android:text="银联"
          android:textSize="15sp"
          android:textColor="@color/bjskres_black_de"
          android:drawableTop="@drawable/bjskres_icon_p3"
          android:layout_weight="1"
          android:visibility="visible"
          />
 
    </LinearLayout>
 
 
  </LinearLayout>
 
</FrameLayout>