调整签到提现布局

This commit is contained in:
renhaoting 2025-12-09 16:56:06 +08:00
parent 6925c42372
commit 549817ef6e
2 changed files with 67 additions and 32 deletions

View File

@ -149,6 +149,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginHorizontal="@dimen/dp10"
/>
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
@ -177,6 +178,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginHorizontal="@dimen/dp10"
/>
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
@ -206,15 +208,37 @@
/>
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
android:id="@+id/withdraw_pix2"
android:layout_width="wrap_content"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
/>
android:orientation="horizontal">
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
android:id="@+id/withdraw_pix2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
/>
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="10dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:visibility="invisible"
/>
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:visibility="invisible"
/>
</LinearLayout>

View File

@ -1,32 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/root"
android:layout_width="109dp"
android:layout_height="75dp"
android:orientation="vertical"
android:background="@drawable/withdraw_item_bg_unselected"
android:gravity="center_horizontal"
>
android:layout_width="match_parent"
android:layout_height="wrap_content">
<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"/>
<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"/>
<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"
/>
<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>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>