gpt4 book ai didi

android - Anko 对话框按钮标题

转载 作者:IT老高 更新时间:2023-10-28 13:43:41 27 4
gpt4 key购买 nike

有了 Anko,我可以写这样的东西来显示对话框:

alert("Dialog title") {
yesButton {}
noButton {}
}.show()

如何为按钮设置标题?

noButton {title = "title"}

不幸的是,它不起作用。

最佳答案

您可以使用 positiveButtonnegativeButton像这样:

alert("Dialog title") {
positiveButton("Yes") { it.dismiss() }
negativeButton("No") { it.dismiss() }
}.show()

关于android - Anko 对话框按钮标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42082380/

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