hch
2024-09-06 aaac37db830fbed1e7067d037906970b9cf4e904
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:id="@+id/dialog_view"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/sp_tran"
    android:minHeight="180dp"
    android:minWidth="280dp"
    android:orientation="vertical"
    android:padding="3dp">
 
    <TextView
        android:id="@+id/tip_text"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:background="@color/sp_tran"
        android:gravity="center"
        android:paddingLeft="18dp"
        android:paddingRight="18dp"
        android:text="无法获取支付信息,请联系思璞客服"
        android:textColor="@color/sp_btn_text_color"
        android:textSize="14sp"/>
 
    <LinearLayout
        android:id="@+id/ll_ott"
        android:layout_width="match_parent"
        android:layout_height="44dp"
        android:background="@color/sp_tran"
        android:orientation="horizontal"
        android:textColor="@color/sp_black">
 
        <TextView
            android:id="@+id/cancel"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_margin="2dp"
            android:layout_weight="1"
            android:background="@drawable/sp_white_button_selector"
            android:gravity="center"
            android:text="联系客服"
            android:textColor="@color/sp_btn_text_color"
            android:textSize="16sp"/>
 
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="44dp"
        android:background="@color/sp_tran"
        android:orientation="horizontal"
        android:textColor="@color/sp_black">
 
        <TextView
            android:id="@+id/sure"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_margin="2dp"
            android:layout_weight="1"
            android:background="@drawable/sp_white_button_selector"
            android:gravity="center"
            android:text="取消支付"
            android:textColor="@color/sp_btn_text_color"
            android:textSize="16sp"/>
 
        <TextView
            android:id="@+id/other"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_margin="2dp"
            android:layout_weight="1"
            android:background="@drawable/sp_white_button_selector"
            android:gravity="center"
            android:text="联系客服"
            android:textColor="@color/sp_btn_text_color"
            android:textSize="16sp"/>
 
    </LinearLayout>
</LinearLayout>