如何以编程方式更改图像按钮透明度?

发布于 2024-12-13 04:02:49 字数 48 浏览 0 评论 0原文

如何在android中以编程方式设置图像按钮的透明度?我正在即时创建动态图像按钮。

How to set the transparency of the image button programmatically in android? I am creating dynamic image buttons on the fly.

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

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

发布评论

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

评论(3

十年九夏 2024-12-20 04:02:49

您应该能够使用以下内容更改按钮:

btnMybutton.getBackground().setAlpha(45);

You should be able to change a button with the following:

btnMybutton.getBackground().setAlpha(45);
若无相欠,怎会相见 2024-12-20 04:02:49

ImageButton.setBackgroundColor(Color.TRANSPARENT) 应该可以解决问题。

来自 http://developer.android.com/reference/ android/view/View.html#setBackgroundColor%28int%29

将背景设置为给定的 Drawable,或删除背景。如果
背景有内边距,此视图的内边距设置为
背景的填充。然而,当背景被移除时,这
视图的内边距没有被触及。如果需要设置填充,
请使用 setPadding(int, int, int, int)。

ImageButton.setBackgroundColor(Color.TRANSPARENT) Should solve the problem.

From http://developer.android.com/reference/android/view/View.html#setBackgroundColor%28int%29

Set the background to a given Drawable, or remove the background. If
the background has padding, this View's padding is set to the
background's padding. However, when a background is removed, this
View's padding isn't touched. If setting the padding is desired,
please use setPadding(int, int, int, int).

北音执念 2024-12-20 04:02:49

我喜欢这个:

imageButton.setImageAlpha(alpha_value); //alpha_value between 0...255

I like this:

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