<?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>
|