<?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"
|
android:orientation="vertical">
|
|
<androidx.core.widget.NestedScrollView
|
android:layout_width="match_parent"
|
android:paddingBottom="70dp"
|
android:clipToPadding="false"
|
android:layout_height="wrap_content">
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="6dp"
|
android:background="@color/write"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="40dp"
|
android:drawableStart="@drawable/bg_main_drawble_start"
|
android:drawablePadding="10dp"
|
android:gravity="center_vertical"
|
android:paddingStart="14dp"
|
android:text="订单类型"
|
android:textColor="#ff333333"
|
android:textSize="15sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line_14" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_type"
|
android:layout_marginStart="4dp"
|
android:layout_marginEnd="4dp"
|
android:layout_marginBottom="20dp"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="6dp"
|
android:background="@color/write"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="40dp"
|
android:drawableStart="@drawable/bg_main_drawble_start"
|
android:drawablePadding="10dp"
|
android:gravity="center_vertical"
|
android:paddingStart="14dp"
|
android:text="订单状态"
|
android:textColor="#ff333333"
|
android:textSize="15sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line_14" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_statue"
|
android:layout_marginEnd="90dp"
|
android:layout_marginStart="4dp"
|
android:layout_marginBottom="20dp"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_city_to"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="6dp"
|
android:background="@color/write"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="40dp"
|
android:drawableStart="@drawable/bg_main_drawble_start"
|
android:drawablePadding="10dp"
|
android:gravity="center_vertical"
|
android:paddingStart="14dp"
|
android:text="线路"
|
android:textColor="#ff333333"
|
android:textSize="15sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line_14" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_line"
|
android:layout_width="match_parent"
|
android:layout_marginEnd="4dp"
|
android:layout_marginBottom="20dp"
|
android:layout_marginStart="4dp"
|
android:layout_height="wrap_content" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:orientation="horizontal"
|
android:layout_margin="14dp"
|
android:layout_alignParentBottom="true"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_reset"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="40dp"
|
android:background="@drawable/bg_gray_line_4"
|
android:gravity="center"
|
android:layout_marginStart="5dp"
|
android:text="重置"
|
android:textColor="@color/textColor"
|
android:layout_marginEnd="12dp"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_sure"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="40dp"
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="5dp"
|
android:background="@drawable/main_color_eight_two"
|
android:gravity="center"
|
android:text="确定"
|
android:textColor="@color/write"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|