<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="20dp"
|
android:background="@drawable/bg_white_10"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="14dp"
|
android:text="合计金额"
|
android:textColor="#ff333333"
|
android:textSize="16sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_all_money_num"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="10dp"
|
android:text="¥200.00"
|
android:textColor="@color/red_price"
|
android:textSize="36sp" />
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_marginTop="6dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_marginRight="14dp"
|
android:layout_weight="1"
|
android:alpha="0.3"
|
android:background="#979797" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="费用明细"
|
android:textColor="#ff333333"
|
android:textSize="14sp" />
|
|
<View
|
android:layout_width="0dp"
|
android:layout_height="1px"
|
android:layout_marginLeft="14dp"
|
android:layout_weight="1"
|
android:alpha="0.3"
|
android:background="#979797" />
|
|
|
</LinearLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_money"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="30dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/tv_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="12dp"
|
android:text="平台服务费"
|
android:textColor="#ff000000"
|
android:textSize="12sp"
|
/>
|
|
<include layout="@layout/include_weight_width"/>
|
|
<TextView
|
android:id="@+id/tv_money_pint"
|
android:layout_marginEnd="12dp"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="12dp"
|
android:text="0元"
|
android:textColor="#ff000000"
|
android:textSize="12sp"
|
/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|