Android - DialogPreferenec 只需一键
默认情况下,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以轻松删除取消按钮或确定按钮,只需为取消设置
setNegativeButtonText(null);
并为确定设置setPositiveButtonText(null);
即可。You can easily remove the cancel button or okey button just set the
setNegativeButtonText(null);
for cancel andsetPositiveButtonText(null);
for okey.看一下这个例子:
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.