显示带有四个按钮的对话框
嘿!我正在使用对话框我的选择。我想要该对话框中有四个按钮。我添加了三个按钮,其中一个是
myDialog.setPositiveButton("删除", new DialogInterface.OnClickListener()
第二个是
myDialog.setNegativeButton("取消", new DialogInterface.OnClickListener()
第三个是 myDialog.setNeutralButton("Add", new DialogInterface.OnClickListener() 但我无法添加第四个,因为我又尝试了一个 setPositiveButton 但它只显示一个。我如何添加第四个请给我提示,
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想使用普通对话框,则类似这样的
按钮
应该可以工作。您可以根据您的要求创建布局。
If you just want to use a notmal dialog something like this should work
button_layout.xml
You can create the layout according to your requirement.
你不能。在这种情况下,您必须为您的
自定义视图 >Dialog
并将四个按钮放在该视图的底部(在顶部,放置一个带有消息的TextView
)。You can't. In that case you must create a custom view for your
Dialog
and put four buttons at the bottom of that view (at the top, you put aTextView
with the message).