标签: android button transparent
如何将按钮的背景设置为透明颜色,例如透明蓝色,而不是纯蓝色?
当我使用button.setBackgroundColor(Color.BLUE)时,它会将其设置为稳定的蓝色。
button.setBackgroundColor(Color.BLUE)
答案 0 :(得分:5)
您可以使用Color.argb()。它需要四个int个参数,每个参数的范围是0到255.
int
假设你想要一个50%alpha的蓝色按钮:
button.setBackgroundColor(Color.argb(125, 0, 0, 255));