android 设置控件的透明度

今天做东西,遇到要给控件增加透明度,参考了一些文档/资料,找到解决的方案:

v.getBackground().setAlpha(100);

Specify an alpha value for the drawable. 0 means fully transparent, and 255 means fully opaque.

参考:/docs/reference/android/graphics/drawable/Drawable.html#setAlpha(int)

你可能感兴趣的:(android 设置控件的透明度)