`
lxr215
  • 浏览: 58970 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

设置ImageView(或其他View)透明或不透明

 
阅读更多

设置ImageView透明:

ImageView.setBackgroundDrawable(drawable);

ImageView.getBackground().setAlpha(100);

设置ImageView不透明:

ImageView.setBackgroundDrawable(drawable);

ImageView.getBackground().setAlpha(255);

如果有其他控件引用了这个drawable图片, 则透明时,其他控件也会透明. 应用mutate();

ImageView.setBackgroundDrawable(drawable.mutate());

ImageView.getBackground().setAlpha(100);

3
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics