<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:orientation="vertical"
|
android:paddingStart="14dp"
|
android:paddingEnd="14dp"
|
android:paddingBottom="14dp"
|
android:layout_marginBottom="6dp"
|
android:background="@color/write"
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="11dp"
|
android:layout_marginTop="11dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="下单时间:2019年5月20日18:00"
|
android:textColor="#ff666666"
|
android:textSize="13sp"
|
/>
|
|
<include layout="@layout/include_weight_width"/>
|
|
<TextView
|
android:id="@+id/tv_statue"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="待出发"
|
android:textColor="@color/color_07207"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="8dp"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="下单用户: "
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_user"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="张三-18380591213"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="4dp"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="起点: "
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_start"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="泸州高速客运中心"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="4dp"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="终点: "
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_end"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="泸州高速客运中心"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_line"
|
android:layout_width="match_parent"
|
android:layout_marginTop="4dp"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="所属线路:"
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_line"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="泸州高速客运中心"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|