Android黑白化处理

在BaseActivity中的onCreate方法中添加如下代码

Paint paint=new Paint();
ColorMatrix colorMatrix=new ColorMatrix();
colorMatrix.setSaturation(0); //设置饱和度
paint.setColorFilter(new ColorMatrixColorFilter(colorMatrix));
getWindow().getDecorView().setLayerType(View.LAYER_TYPE_HARDWARE,paint);

效果如下:
在这里插入图片描述

转自:Android实现APP黑白化

猜你喜欢

转载自blog.csdn.net/xiaopihair123/article/details/128324568