调整签到提现布局
This commit is contained in:
parent
6925c42372
commit
549817ef6e
|
|
@ -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,6 +208,10 @@
|
|||
/>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
<com.gamedog.vididin.features.withdraw.widget.WithDrawItemView
|
||||
android:id="@+id/withdraw_pix2"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
@ -215,6 +221,24 @@
|
|||
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>
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,22 @@
|
|||
<?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:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:orientation="vertical"
|
||||
android:background="@drawable/withdraw_item_bg_unselected"
|
||||
android:gravity="center_horizontal"
|
||||
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"
|
||||
|
|
@ -27,6 +35,9 @@
|
|||
android:textColor="@color/green_1a"
|
||||
android:text="@string/cash00"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Loading…
Reference in New Issue