如何以编程方式更改图像按钮透明度?
如何在android中以编程方式设置图像按钮的透明度?我正在即时创建动态图像按钮。
How to set the transparency of the image button programmatically in android? I am creating dynamic image buttons on the fly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该能够使用以下内容更改按钮:
You should be able to change a button with the following:
ImageButton.setBackgroundColor(Color.TRANSPARENT) 应该可以解决问题。
来自 http://developer.android.com/reference/ android/view/View.html#setBackgroundColor%28int%29
ImageButton.setBackgroundColor(Color.TRANSPARENT) Should solve the problem.
From http://developer.android.com/reference/android/view/View.html#setBackgroundColor%28int%29
我喜欢这个:
I like this: