按钮设置透明颜色的背景

时间:2010-07-14 07:08:41

标签: android button transparent

如何将按钮的背景设置为透明颜色,例如透明蓝色,而不是纯蓝色?

当我使用button.setBackgroundColor(Color.BLUE)时,它会将其设置为稳定的蓝色。

1 个答案:

答案 0 :(得分:5)

您可以使用Color.argb()。它需要四个int个参数,每个参数的范围是0到255.

假设你想要一个50%alpha的蓝色按钮:

button.setBackgroundColor(Color.argb(125, 0, 0, 255));