hch
2025-07-18 2a011653190c36e6fb1f790b3819a1d6b0744aef
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
     >
    
    <include layout="@layout/ttw_cz_navigation"
             android:id="@+id/ic_top"
        />
     <FrameLayout 
        android:id="@+id/tl_nav" 
        android:layout_width="match_parent"
        android:layout_height="46dip"
        android:background="#FBE5D2"
        android:padding="4dip"
        android:layout_centerVertical="true"
        android:layout_below="@id/ic_top"
        >
          <View
            android:id="@+id/v_slider"   
            android:layout_width="60dip"
            android:layout_height="36dip"
            android:layout_gravity="center_vertical"
            android:background="@drawable/ttw_order_mark"
            />
            <TableLayout 
                android:id="@+id/ll_order_status"
                android:layout_height="match_parent"
                android:layout_width="match_parent"
                android:gravity="center"
                >
                <TableRow
                    android:layout_height="match_parent"
                    android:layout_width="match_parent"
                     >
                 <TextView 
                    android:id="@+id/tv_success"
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:text="支付成功"
                    android:gravity="center"
                    android:layout_weight="1"
                    android:textColor="@android:color/white"
                    />
                 <TextView 
                    android:id="@+id/tv_wait"
                    android:layout_toRightOf="@id/tv_success"
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:text="未支付"
                     android:gravity="center"
                    android:layout_weight="1"
                    android:textColor="@android:color/black"
                    />
                <TextView 
                    android:id="@+id/tv_fail"
                    android:layout_toRightOf="@id/tv_wait"
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:text="支付失败"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:textColor="@android:color/black"
                    /></TableRow>
            </TableLayout>
    </FrameLayout>
    <android.support.v4.view.ViewPager  
             android:layout_below="@id/tl_nav"  
            android:id="@+id/viewPager"    
            android:layout_width="match_parent"
            android:background="@android:color/white"   
            android:layout_height="match_parent" /> 
</RelativeLayout>