gpt4 book ai didi

android - AlertDialog 可以显示带有复选框对话框的消息吗?

转载 作者:行者123 更新时间:2023-11-29 17:54:40 27 4
gpt4 key购买 nike

我希望得到一个类似a.png的对话框,但是下面的代码无法创建类似a.png的UI。我能怎么做?谢谢!

a.png

AlertDialog.Builder builder = new Builder(this);
builder.setMessage("The operation will spend long time!");
builder.setTitle(getString(R.string.Warning));
builder.setMultiChoiceItems(new String[] { "Don't display the message again" }, null, null);
builder.setPositiveButton(getString(R.string.OK), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});

builder.create().show();

最佳答案

Can AlertDialog display a message with checkbox dialog?

要在 AlertDialog 中显示任何 View ,您应该需要为对话框屏幕创建自定义布局,而不是使用默认布局,请参见下面创建自定义 AlertDialog 的示例:

Android prompt user input dialog example

Customize AlertDialog

关于android - AlertDialog 可以显示带有复选框对话框的消息吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20319776/

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