junixapp/XPopup

底部asbottomlist弹窗的黑色背景会偶尔消失,设置了.hasShadowBg(true),在两个不同的activity,其中一个出现后,另一个也会出现

JoeVX opened this issue · 1 comments

JoeVX commented

XPopup版本
2.9.19

手机系统和型号
小米13p

描述你的问题
底部asbottomlist弹窗的黑色背景会偶尔消失,设置了.hasShadowBg(true),在两个不同的activity,其中一个出现后,另一个也会出现

JoeVX commented

XPopup.Builder(this)
.isDarkTheme(DarkModeUtil.isDarkMode(this))
.hasShadowBg(true)
.isDestroyOnDismiss(true) //对于只使用一次的弹窗,推荐设置这个
.asBottomList(
null, arrayOf(resources.getString(R.string.save_qrcode), resources.getString(R.string.reset_qrcode)), null, -1,
{ position, _ ->
when (position) {
0 -> { }
1 ->{ }
}
},
R.layout.video_select_method_layout,
R.layout.video_select_method_item
).show()