Android - DialogPreferenec 只需一键

发布于 2024-10-19 19:53:12 字数 74 浏览 3 评论 0原文

默认情况下,DialogPreference 有两个按钮 - 确定和取消。 我只想保留“确定”按钮并删除“取消”按钮 - 我该怎么做?

By default, DialogPreference has two buttons - OK and Cancel.
I want to leave only the OK button and remove the cancel button - how can i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰◇生如夏花灿烂 2024-10-26 19:53:12

您可以轻松删除取消按钮或确定按钮,只需为取消设置 setNegativeButtonText(null); 并为确定设置 setPositiveButtonText(null); 即可。

You can easily remove the cancel button or okey button just set the setNegativeButtonText(null); for cancel and setPositiveButtonText(null); for okey.

2024-10-26 19:53:12

看一下这个例子:
http://developer.android.com/guide/appendix/faq/commontasks .html#alerts

您应该只需要 setPositiveButton 属性。

Take a look at this example:
http://developer.android.com/guide/appendix/faq/commontasks.html#alerts

You should only need the setPositiveButton attibute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文