liuxue
2021-07-29 7e2df20ccc7cdfb528d309369460a4f3d66afdf1
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="@dimen/sdp_pay_dialog_width"
    android:layout_height="@dimen/sdp_pay_dialog_height"
    android:orientation="vertical">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
 
        <ImageButton
            android:id="@+id/backButton"
            android:layout_gravity="left|center"
            android:layout_centerVertical="true"
            android:gravity="left"
            android:layout_width="20dp"
            android:layout_height="30dp"
            android:layout_marginLeft="10dp"
            android:background="@android:color/transparent"
            android:src="@drawable/icon_left_arrow" />
 
        <!-- 标题 -->
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:layout_centerInParent="true"
            android:text="我的卡列表"
            android:paddingTop="5dp"
            android:paddingBottom="5dp"
            android:textSize="@dimen/sdp_dialog_title_text_size"
            android:textStyle="bold"
            android:textColor="@color/sdp_normal_text_color"/>
 
    </RelativeLayout>
 
 
 
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:background="@color/sdp_dialog_seperator_line_color"/>
 
    <ListView
        android:id="@+id/cardList"
        android:layout_width="match_parent"
        android:layout_marginTop="10dp"
        android:layout_height="130dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        />
 
    <Button
        android:id="@+id/useOtherCardPayButton"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="20dp"
        android:background="@drawable/sdp_button_sel"
        android:elevation="15dp"
        android:text="使用其他银行卡付款"
        android:textColor="#FFFFFF"
        android:textSize="15sp" />
</LinearLayout>