向 AlertDialog 按钮添加自定义背景
是否可以将可绘制资源设置到 AlertDialog 按钮中,以保持过程简单?
谢谢!
Is possible to set a drawable resources into the AlertDialog buttons keeping the process easy?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您还询问如何制作自定义按钮以及自定义警报。使用 ImageButton:
http://developer.android.com/reference/android/widget/ ImageButton.html
因此,您需要创建一个如上所述的自定义警报类,然后在布局中使用 ImageButton,以便您可以将按钮图像替换为您想要的任何图像。
I think you are also asking about how to make a custom button as well as a custom alert. Use ImageButton:
http://developer.android.com/reference/android/widget/ImageButton.html
So you will need to both create a custom Alert class as mentioned above and then use ImageButton in the layout so you can replace the button image with whatever you want.
您无法自定义 AlertDialog 按钮。您可以改用自定义对话框。 自定义 AlertDialog 页脚
以下是详细信息:http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application
You cannot customize AlertDialog buttons. You can use Custom Dialog instead. Customize AlertDialog Footer
Here are details: http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application