改变一个ImageView的透明度

来源:互联网 发布:在线视频播放器 mac 编辑:程序博客网 时间:2024/04/27 21:00

例子:

  Drawable image;
  image=speedImg.getDrawable();
  image.mutate().setAlpha(180);
  speedImg.setBackgroundDrawable(image);

 

第二种方法:

给View设置 AlphaAnimation

public static AlphaAnimation setAnimation(float alpha){
        AlphaAnimation alphaAnimation = new AlphaAnimation(alpha, alpha);
        alphaAnimation.setDuration(10);
        alphaAnimation.setFillAfter(true);
        return alphaAnimation;
    }

原创粉丝点击