<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
android:layout_width="715dp"
|
android:layout_height="wrap_content"
|
android:id="@+id/rl_back"
|
android:background="@drawable/bg_white_6"
|
android:layout_centerInParent="true"
|
android:layout_marginTop="50dp"
|
android:layout_marginBottom="50dp">
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_margin="13dp"
|
android:text="订单详情"
|
android:textColor="@color/sdsdf"
|
android:textSize="60sp" />
|
|
<ImageView
|
android:id="@+id/iv_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:padding="32dp"
|
android:src="@mipmap/close_big" />
|
|
<View
|
android:id="@+id/view_line_14"
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_below="@+id/iv_close"
|
android:layout_marginLeft="48dp"
|
android:layout_marginRight="48dp"
|
android:alpha="0.3"
|
android:background="#979797" />
|
|
<LinearLayout
|
android:id="@+id/ll_order_top"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@+id/iv_close"
|
android:orientation="vertical"
|
android:paddingStart="33dp"
|
android:paddingTop="15dp">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="6dp"
|
android:layout_marginBottom="6dp"
|
android:drawableStart="@mipmap/icon_time_xiao"
|
android:drawablePadding="5dp"
|
android:text="4月3日 14:00"
|
android:textColor="@color/black"
|
android:textSize="32sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_start"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="6dp"
|
android:layout_marginBottom="6dp"
|
android:drawableStart="@drawable/bg_point_main_color_slab"
|
android:drawablePadding="5dp"
|
android:text="柳州市政府"
|
android:textColor="@color/black"
|
android:textSize="32sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_end"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="6dp"
|
android:layout_marginBottom="6dp"
|
android:drawableStart="@drawable/bg_point_main_color_black_slab"
|
android:drawablePadding="5dp"
|
android:text="柳州客运中心"
|
android:textColor="@color/black"
|
android:textSize="32sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_money"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="2dp"
|
android:layout_marginTop="3dp"
|
android:drawableStart="@mipmap/hongbao_xiao"
|
android:drawablePadding="10dp"
|
android:text="8元小费"
|
android:textColor="@color/black"
|
android:textSize="32sp"
|
android:textStyle="bold" />
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="6dp"
|
android:layout_marginBottom="17dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/pay_order_detail" />
|
|
<TextView
|
android:id="@+id/tv_money_order"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="@dimen/dp_5"
|
android:text="订单金额:"
|
android:textColor="@color/black"
|
android:textSize="32sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_money_num"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="18.00元"
|
android:textColor="#ED5F08"
|
android:textSize="32sp"
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
|
</RelativeLayout>
|
</RelativeLayout>
|