<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:background="@color/write"
|
android:layout_width="match_parent"
|
android:layout_marginBottom="6dp"
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
android:id="@+id/ll_item_main"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/write"
|
android:paddingBottom="14dp"
|
android:paddingStart="14dp"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_marginTop="11dp"
|
android:layout_height="wrap_content"
|
android:text="申请时间:2019年5月20日18:00"
|
android:layout_marginBottom="10dp"
|
android:textColor="#ff666666"
|
android:textSize="13sp"
|
/>
|
|
<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_start"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="泸州高速客运中心"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="5dp"
|
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"
|
android:text="泸州高速客运中心"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="5dp"
|
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_shen_car_type"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="专车订单"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_marginTop="5dp"
|
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_driver"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="张三-川E12345"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/tv_now"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_marginBottom="14dp"
|
android:layout_marginEnd="14dp"
|
android:background="@drawable/main_color_eight_two"
|
android:layout_alignBottom="@+id/ll_item_main"
|
android:text="立即处理"
|
android:paddingStart="10dp"
|
android:paddingEnd="10dp"
|
android:paddingTop="6dp"
|
android:paddingBottom="6dp"
|
android:textColor="#ffffffff"
|
android:textSize="13sp"
|
/>
|
|
</RelativeLayout>
|