2025-11-24 10:53:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-12-09 08:56:06 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2025-11-24 10:53:04 +00:00
|
|
|
android:id="@+id/root"
|
2025-12-09 08:56:06 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
2025-11-24 10:53:04 +00:00
|
|
|
|
2025-12-09 08:56:06 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@drawable/withdraw_item_bg_unselected"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintDimensionRatio="H, 109:75"
|
|
|
|
|
>
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
|
android:id="@+id/iv_item_icon"
|
|
|
|
|
android:layout_width="17dp"
|
|
|
|
|
android:layout_height="22dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:src="@mipmap/icon_cash"/>
|
2025-11-24 10:53:04 +00:00
|
|
|
|
|
|
|
|
|
2025-12-09 08:56:06 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_withdraw_num"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="7dp"
|
|
|
|
|
android:textSize="15sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textColor="@color/green_1a"
|
|
|
|
|
android:text="@string/cash00"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
2025-11-24 10:53:04 +00:00
|
|
|
|
|
|
|
|
|
2025-12-09 08:56:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|