<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
android:orientation="vertical"
|
android:layout_marginBottom="7dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:background="#F3F3F3"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:paddingBottom="8dp"
|
android:background="#F3F3F3"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_name_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:textStyle="bold"
|
android:layout_marginTop="9dp"
|
android:text="可乐1"
|
android:textColor="#ff000000"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_pay_statue"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="9dp"
|
android:layout_marginEnd="9dp"
|
android:layout_alignParentEnd="true"
|
android:textStyle="bold"
|
android:text="已支付"
|
android:textColor="#ff2a6be4"
|
android:textSize="14sp"
|
/>
|
|
|
</RelativeLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_all_money"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
<RelativeLayout
|
android:id="@+id/rl_weiver"
|
android:layout_gravity="center_horizontal"
|
android:layout_width="30dp"
|
android:background="#F3F3F3"
|
android:gravity="center"
|
android:layout_height="16dp">
|
|
<ImageView
|
android:id="@+id/iv_arrow"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/icon_arrow_open_black" />
|
|
|
</RelativeLayout>
|
|
|
</LinearLayout>
|