Anko 对话框按钮标题

Anko dialog button title

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

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

如何为按钮设置标题?

noButton {title = "title"}

很遗憾,它不起作用。

您可以像这样使用 positiveButton and negativeButton

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