<?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:layout_marginBottom="6dp"
|
android:background="@color/write"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_num"
|
android:gravity="center_vertical"
|
android:layout_width="wrap_content"
|
android:paddingStart="14dp"
|
android:textStyle="bold"
|
android:drawableStart="@drawable/bg_main_drawble_start"
|
android:drawablePadding="10dp"
|
android:layout_height="40dp"
|
android:text=""
|
android:textColor="#ff333333"
|
android:textSize="15sp"
|
/>
|
|
<include layout="@layout/include_line_14"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/tv_driver"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="27dp"
|
tools:text="张师傅-18380120087"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
/>
|
|
<include layout="@layout/include_weight_width"/>
|
|
<TextView
|
android:id="@+id/tv_bind"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="绑定司机"
|
android:layout_marginEnd="14dp"
|
android:paddingStart="8dp"
|
android:paddingEnd="8dp"
|
android:paddingTop="5dp"
|
android:paddingBottom="5dp"
|
android:textColor="#ffffffff"
|
android:background="@drawable/bg_yellow_25"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line_14"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="27dp"
|
android:layout_marginTop="10dp"
|
android:layout_marginBottom="10dp"
|
android:text="乘客列表"
|
android:textStyle="bold"
|
android:textColor="#ff333333"
|
android:textSize="15sp"
|
/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_passenger"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|