<?xml version="1.0" encoding="utf-8"?>
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:paddingBottom="100dp"
|
android:clipToPadding="false"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<include layout="@layout/include_order_top_cargo" />
|
|
<LinearLayout
|
android:id="@+id/ll_img_user"
|
android:layout_width="match_parent"
|
android:layout_height="80dp"
|
android:background="@color/white"
|
android:orientation="horizontal">
|
|
<View
|
android:layout_width="8dp"
|
android:layout_height="8dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginTop="17dp"
|
android:background="@drawable/bg_blue_stroke" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_user_img2"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginStart="8dp"
|
android:layout_marginTop="17dp" />
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line_left_14" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="80dp"
|
android:background="@color/white"
|
android:orientation="horizontal">
|
|
<View
|
android:layout_width="8dp"
|
android:layout_height="8dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginTop="17dp"
|
android:background="@drawable/bg_blue_stroke" />
|
|
<ImageView
|
android:id="@+id/iv_image_mine"
|
android:layout_width="84dp"
|
android:layout_height="56dp"
|
android:layout_marginStart="8dp"
|
android:layout_marginTop="17dp" />
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line_left_14" />
|
|
<include
|
layout="@layout/include_order_money"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="30dp" />
|
|
<include
|
layout="@layout/activity_order_cancel"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp" />
|
|
<TextView
|
android:id="@+id/tv_show_pay_over"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="10dp"
|
android:text="乘客已支付"
|
android:textColor="#ff000000"
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tv_recome_money"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="10dp"
|
android:text="乘客答谢10元"
|
android:textColor="#ff000000"
|
android:textSize="16sp"
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|