Fix bug - 大额提现界面需要按照效果图改:
1.标题:
2.绿色的背景不一样
3.R$10需要加粗
4.100%颜色改成绿色
5.R$0.1加粗显示
6.底下紫色提示框用错了
This commit is contained in:
parent
5a7e413d83
commit
61d5761ab0
|
|
@ -14,6 +14,7 @@ import com.ama.core.architecture.appBase.AppViewsEmptyViewModelActivity
|
|||
import com.ama.core.architecture.util.AndroidUtil
|
||||
import com.ama.core.architecture.util.CommonItemDecoration
|
||||
import com.ama.core.architecture.util.DateUtil
|
||||
import com.ama.core.architecture.util.ResUtil.dp
|
||||
import com.ama.core.architecture.util.setOnClickBatch
|
||||
import com.gamedog.statisticreporter.StatisticUtil
|
||||
import com.gamedog.vididin.VidiConst
|
||||
|
|
@ -61,7 +62,8 @@ class WithDrawSubActivity : AppViewsEmptyViewModelActivity<ViewBinding>() {
|
|||
|
||||
override fun ViewBinding.initViews() {
|
||||
mType = intent.getIntExtra(EXTRA_TYPE, 0)
|
||||
|
||||
titlebar.setTitleText(R.string.title_withdraw_sub)
|
||||
titlebar.setTitleTextSize(17.dp)
|
||||
recyclerView.layoutManager = LinearLayoutManager(this@WithDrawSubActivity, LinearLayoutManager.HORIZONTAL, false)
|
||||
recyclerView.adapter = mAdapter
|
||||
recyclerView.addItemDecoration(CommonItemDecoration.create(18, 0, false))
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="300dp"
|
||||
android:src="@mipmap/bg_record_win_rgiht"
|
||||
android:src="@mipmap/bg_withdraw_sub_top"
|
||||
android:scaleType="centerCrop"
|
||||
/>
|
||||
|
||||
|
|
@ -27,7 +27,6 @@
|
|||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingTop="30dp" >
|
||||
|
|
@ -52,6 +51,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="30sp"
|
||||
android:textStyle="bold"
|
||||
android:textColor="@color/yellow_e0"
|
||||
android:text="@string/cash"
|
||||
android:layout_marginStart="5dp"
|
||||
|
|
@ -192,9 +192,9 @@
|
|||
android:textSize="14sp"
|
||||
android:textColor="@color/white"
|
||||
android:text="@string/withdraw_sub_bottom_hint"
|
||||
android:gravity="center"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_gravity="center"
|
||||
android:background="@drawable/bg_round_purple_20"
|
||||
android:background="@mipmap/bg_withdraw_sub_bottom"
|
||||
/>
|
||||
|
||||
<FrameLayout
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
|
|
@ -54,6 +54,10 @@ class CustomTitleBar @JvmOverloads constructor(
|
|||
mBinding.tvCenterTitle.setTextColor(ResUtil.getColor(textColor))
|
||||
}
|
||||
|
||||
fun setTitleTextSize(textSize: Float) {
|
||||
mBinding.tvCenterTitle.textSize = textSize
|
||||
}
|
||||
|
||||
fun hideBack() {
|
||||
mBinding.ivBack.isVisible = false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue