<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/ll_order_top"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white"
|
android:elevation="3dp"
|
android:orientation="vertical"
|
android:paddingStart="14dp">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="11dp"
|
android:layout_marginBottom="11dp"
|
android:drawableStart="@mipmap/icon_time_gray"
|
android:drawablePadding="5dp"
|
android:text="4月3日 14:00"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line" />
|
|
|
<TextView
|
android:id="@+id/tv_start_address"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="11dp"
|
android:layout_marginBottom="11dp"
|
android:drawableStart="@drawable/bg_point_main_color"
|
android:drawablePadding="5dp"
|
android:text="柳州市政府"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line" />
|
|
<TextView
|
android:id="@+id/tv_end_address"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="11dp"
|
android:layout_marginBottom="11dp"
|
android:drawableStart="@drawable/bg_point_main_color_black"
|
android:drawablePadding="5dp"
|
android:text="柳州客运中心"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line" />
|
|
<TextView
|
android:id="@+id/tv_red_money"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="11dp"
|
android:layout_marginBottom="11dp"
|
android:drawableStart="@mipmap/icon_people_gray"
|
android:drawablePadding="5dp"
|
android:text="1人,座位:3号,4号"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<include layout="@layout/include_line" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/ll_pay_result"
|
android:layout_marginTop="50dp"
|
android:gravity="center_horizontal"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/tv_pay_result_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="乘客已支付"
|
android:textColor="#ff000000"
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tv_pay_result_money"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="2dp"
|
tools:text="¥15.12"
|
android:textColor="@color/red_price"
|
android:textSize="36sp"
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|