<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/background_gray"
|
android:orientation="vertical">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="38dp"
|
android:layout_marginTop="1dp"
|
android:background="@color/white">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:text="乘客列表"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_num_peo"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="14dp"
|
android:drawableStart="@mipmap/icon_people_orange"
|
android:drawablePadding="8dp"
|
android:paddingStart="14dp"
|
android:text="4人"
|
android:textColor="#ffef3321"
|
android:textSize="16sp" />
|
|
</RelativeLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_peo"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="6dp"
|
android:background="@color/white"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:paddingTop="12dp"
|
android:text="合计金额"
|
android:textColor="#ff333333"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/all_money"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="5dp"
|
android:textColor="#ffef3321"
|
android:textSize="24sp"
|
android:textStyle="bold"
|
tools:text="¥55.78" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_all_order"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|