Fix bug - 大额提现可以做成上下能滚动的,不然那个字展示不完,会被按钮挡住
This commit is contained in:
parent
00910ad616
commit
5a7e413d83
|
|
@ -2,6 +2,7 @@ package com.gamedog.vididin.features.withdraw
|
|||
|
||||
import android.app.Activity
|
||||
import android.content.Intent
|
||||
import android.text.method.ScrollingMovementMethod
|
||||
import android.view.LayoutInflater
|
||||
import androidx.activity.viewModels
|
||||
import androidx.core.view.isVisible
|
||||
|
|
@ -65,6 +66,8 @@ class WithDrawSubActivity : AppViewsEmptyViewModelActivity<ViewBinding>() {
|
|||
recyclerView.adapter = mAdapter
|
||||
recyclerView.addItemDecoration(CommonItemDecoration.create(18, 0, false))
|
||||
|
||||
tvHint.movementMethod = ScrollingMovementMethod.getInstance()
|
||||
tvHint.isSelected = true
|
||||
|
||||
setOnClickBatch(flAction) {
|
||||
when(this) {
|
||||
|
|
|
|||
|
|
@ -81,18 +81,20 @@
|
|||
|
||||
|
||||
|
||||
<FrameLayout
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_marginTop="30dp"
|
||||
android:paddingVertical="23dp"
|
||||
android:paddingHorizontal="15dp"
|
||||
android:background="@drawable/bg_round_white_15_top">
|
||||
android:background="@drawable/bg_round_white_15_top"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_gravity="center_horizontal"
|
||||
|
|
@ -144,7 +146,8 @@
|
|||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical"
|
||||
android:layout_marginTop="15dp"
|
||||
android:padding="15dp"
|
||||
|
|
@ -160,10 +163,12 @@
|
|||
/>
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/tv_hint"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="12sp"
|
||||
android:textColor="@color/gray9"
|
||||
android:scrollbars="vertical"
|
||||
android:text="@string/with_draw_sub_hint"
|
||||
/>
|
||||
|
||||
|
|
@ -177,6 +182,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom|center"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
|
|
@ -225,7 +231,7 @@
|
|||
</FrameLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</FrameLayout>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
|||
Loading…
Reference in New Issue