<?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="wrap_content"
|
android:layout_marginTop="10dp"
|
android:background="@color/white"
|
android:orientation="vertical"
|
android:paddingBottom="6dp">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="44dp"
|
android:layout_marginStart="12dp">
|
|
<TextView
|
android:id="@+id/tv_name_pool"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:layout_centerVertical="true"
|
android:gravity="center"
|
android:text="可乐3"
|
android:textColor="#ff333333"
|
android:textSize="16sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_statue"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:layout_alignParentEnd="true"
|
android:drawablePadding="7dp"
|
android:layout_marginEnd="12dp"
|
android:gravity="center"
|
android:text="已送达"
|
android:textColor="#fffd6d28"
|
android:textSize="13sp"/>
|
|
|
</RelativeLayout>
|
|
<include layout="@layout/include_line_left_12" />
|
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="12dp"
|
android:layout_marginTop="10dp"
|
android:drawableStart="@mipmap/icon_time_gray"
|
android:drawablePadding="6dp"
|
android:text="4月3日 14:00"
|
android:textColor="#ff666666"
|
android:textSize="14sp" />
|
|
|
<TextView
|
android:id="@+id/tv_people_num"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="13dp"
|
android:layout_marginTop="12dp"
|
android:drawableStart="@mipmap/icon_people_gray"
|
android:drawablePadding="6dp"
|
android:text="3人"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
|
<TextView
|
android:id="@+id/tv_start"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="13dp"
|
android:layout_marginTop="12dp"
|
android:drawableStart="@drawable/bg_blue_stroke"
|
android:drawablePadding="6dp"
|
android:text="柳州市政府"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_end"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="13dp"
|
android:layout_marginTop="12dp"
|
android:drawableStart="@drawable/bg_red_stroke"
|
android:drawablePadding="6dp"
|
android:text="柳州客运中心"
|
android:paddingBottom="17dp"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
|
</LinearLayout>
|
|
<ImageView
|
android:id="@+id/iv_phone"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_marginTop="10dp"
|
android:layout_marginEnd="14dp"
|
android:src="@mipmap/icon_dial"/>
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
android:id="@+id/rl_bottom"
|
android:layout_width="match_parent"
|
android:layout_height="60dp">
|
<include layout="@layout/include_line_14"/>
|
|
<TextView
|
android:id="@+id/tv_money"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="¥"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="14dp"
|
android:textColor="@color/red_pooling"
|
android:textSize="24sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_pay_statue"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="15dp"
|
android:layout_alignParentBottom="true"
|
android:layout_alignParentEnd="true"
|
android:layout_marginEnd="14dp"
|
android:text="未支付"
|
android:textColor="#ffff3d3d"
|
android:textSize="14sp"
|
/>
|
|
|
<TextView
|
android:id="@+id/tv_cancel"
|
android:layout_width="70dp"
|
android:layout_height="36dp"
|
android:text="取消订单"
|
android:layout_centerVertical="true"
|
android:layout_alignParentEnd="true"
|
android:layout_marginEnd="14dp"
|
android:gravity="center"
|
android:textColor="@color/blue_pooling"
|
android:background="@drawable/blue_pc_false"
|
android:textSize="13sp"
|
/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|