<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:orientation="vertical"
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:background="@color/white"
|
android:orientation="horizontal">
|
|
|
<TextView
|
android:id="@+id/tv_all"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:layout_height="match_parent"
|
android:text="全部"
|
android:textStyle="bold"
|
android:textColor="#fff07207"
|
android:textSize="13sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_wait"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:textStyle="bold"
|
android:gravity="center"
|
android:layout_height="match_parent"
|
android:text="待支付"
|
android:textColor="#fff07207"
|
android:textSize="13sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_cancel"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:layout_height="match_parent"
|
android:textStyle="bold"
|
android:text="已取消"
|
android:textColor="#fff07207"
|
android:textSize="13sp"
|
/>
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line"/>
|
|
<RelativeLayout
|
android:layout_marginTop="5dp"
|
android:id="@+id/rl_container"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"/>
|
|
|
</LinearLayout>
|