首页 > 系统 > Android > 正文

Android程序开发之动态设置ImageView的亮度

2020-04-11 10:58:06
字体:
来源:转载
供稿:网友

废话不多说了,直接给大家贴代码了。 

//改变图片的亮度方法 0--原样 >0---调亮 <0---调暗  private void changeLight(ImageView imageView, int brightness) {    ColorMatrix cMatrix = new ColorMatrix();    cMatrix.set(new float[] { 1, 0, 0, 0, brightness, 0, 1, 0, 0,        brightness,// 改变亮度        0, 0, 1, 0, brightness, 0, 0, 0, 1, 0 });    imageView.setColorFilter(new ColorMatrixColorFilter(cMatrix));  } 

好了,代码比较简单,希望对大家有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表