mch_dialog_saoma.xml
2.5 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="300dp"
android:layout_height="290dp"
android:orientation="vertical"
android:background="@drawable/mch_white_bg">
<ImageView
android:id="@+id/btn_close"
android:layout_width="45dp"
android:layout_height="45dp"
android:padding="10dp"
android:src="@drawable/mch_common_btn_close_n"
android:layout_alignParentRight="true"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginRight="70dp"
android:layout_marginLeft="70dp"
android:layout_marginTop="10dp">
<TextView
android:id="@+id/tv_zfb"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="支付宝"
android:textStyle="bold"
android:textColor="#21b1eb"
android:textSize="18sp"
android:gravity="center"/>
<TextView
android:id="@+id/tv_wx"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="微信"
android:textColor="#999999"
android:textSize="18sp"
android:gravity="center"/>
</LinearLayout>
<ImageView
android:id="@+id/img_QR_code"
android:layout_width="170dp"
android:layout_height="170dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="60dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:gravity="center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_below="@id/img_QR_code"
android:layout_marginTop="15dp"
android:textColor="#999999"
android:lineSpacingExtra="4dp"
android:text="请使用手机扫码支付\n付款过程中请勿关闭此弹窗"/>
</RelativeLayout>
</RelativeLayout>