client_Hale
2020-11-11 3cc869e23d44c940fdd2bb3d80d6a86c8b7816f2
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <TextView android:id="@+id/pop_protocol_sign"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="16dp"
        android:textColor="#0285F0"
        android:textSize="15sp"
        android:clickable="true"
        android:background="@drawable/protocol_show_bg"
        />
    <View android:layout_width="match_parent"
        android:layout_height="1px"
        android:background="#999999"
        />
    <TextView android:id="@+id/pop_protocol_pay"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="16dp"
        android:textColor="#0285F0"
        android:textSize="15sp"
        android:clickable="true"
        android:background="@drawable/protocol_show_bg"
        />
    <View android:layout_width="match_parent"
        android:layout_height="1px"
        android:background="#999999"
        />
    <TextView android:id="@+id/pop_protocol_bank"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="16dp"
        android:textColor="#0285F0"
        android:textSize="15sp"
        android:clickable="true"
        android:background="@drawable/protocol_show_bg"
        android:visibility="gone"
        />
    <View android:id="@+id/pop_protocol_bank_divider"
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:background="#999999"
        android:visibility="gone"
        />
    <TextView android:id="@+id/pop_protocol_cancel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="取消"
        android:gravity="center"
        android:padding="14dp"
        android:textColor="#ff0000"
        android:textSize="15sp"
        android:clickable="true"
        android:background="@drawable/protocol_show_bg"
        />
</LinearLayout>