gpt4 book ai didi

android - Anko 警报文本颜色显示错误

转载 作者:太空狗 更新时间:2023-10-29 13:04:23 24 4
gpt4 key购买 nike

我正在显示带有消息和确定按钮的警报对话框。但是确定按钮的颜色和按钮的文本是相同的

context!!.alert ("this test message for the dialog aleat"){
okButton { context!!.toast("yeah it ok") }
}.show()

enter image description here

最佳答案

我使用以下代码实现了这一点。为我工作

     getContext()?.alert("me") {
also {
ctx.setTheme(R.style.CustomAlertDialog)
}
okButton { getContext()!!.toast("Done") }
}!!.show()

主题变化是

  <style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="dialogTheme">@style/CustomAlertDialog</item>
</style>

<style name="CustomAlertDialog" parent="ThemeOverlay.MaterialComponents.Dialog.Alert">
<item name="buttonBarPositiveButtonStyle">@style/btnStyle</item>
<item name="android:textColor">@android:color/white</item>
</style>

<style name="btnStyle" parent="TextAppearance.AppCompat.Body1">
<item name="android:textColor">@android:color/white</item>
</style>

关于android - Anko 警报文本颜色显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50370650/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com