android 对话框中的 imageButton?
我想放置一个 imageButton 而不是默认的正按钮。 使用布局还不够好,因为它不能取代肯定按钮。 有谁知道是否可以覆盖默认按钮或设置其背景?
I want to put an imageButton instead of the default positive button.
using layout is not good enough because it doesn't replace the positive button.
does anyone know if it is possible to override the default buttons, or set their background?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在谈论创建一个 AlertDialog。为什么不直接创建您自己的自定义对话框呢?您可以在布局中指定您的
ImageButton
,然后使用该布局创建一个对话框,您不需要靠近肯定按钮。更多信息请点击这里:
http://developer.android.com/guide/topics/ui/dialogs .html#CustomDialog
I am assuming you are talking about creating an AlertDialog. Why not just create your own custom dialog? You can specify your
ImageButton
in a layout, then create a dialog with that layout, you don't need to go near the positive button.More info here:
http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog