79 lines
2.9 KiB
XML
79 lines
2.9 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
tools:ignore="ResourceName">
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/dp_10"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
tools:ignore="RtlSymmetry">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv6"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:text="2025-3-6"
|
||
|
|
android:textColor="@color/color_FF333333"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:id="@+id/rl1"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentEnd="true"
|
||
|
|
android:layout_marginEnd="@dimen/dp_16"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv7"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="收益"
|
||
|
|
android:textColor="@color/color_FF333333"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv8"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="4dp"
|
||
|
|
android:layout_toEndOf="@+id/tv7"
|
||
|
|
android:drawablePadding="5dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="10000"
|
||
|
|
android:textColor="#ffff8acc"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv9"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="5dp"
|
||
|
|
android:layout_toEndOf="@+id/tv8"
|
||
|
|
android:text="流水"
|
||
|
|
android:textColor="@color/color_FF333333"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tve"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="4dp"
|
||
|
|
android:layout_toEndOf="@+id/tv9"
|
||
|
|
android:gravity="center"
|
||
|
|
android:drawablePadding="5dp"
|
||
|
|
android:text="10000"
|
||
|
|
android:textColor="#ffff8acc"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
</RelativeLayout>
|
||
|
|
|
||
|
|
</RelativeLayout>
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|