android实现页面黑白色

在今年一些纪念日中,很多app都开始使用黑白色主题,效果如下:
android实现页面黑白色_第1张图片
今天我们也来实现一下,方式很简单。代码如下:
只需要在onCreate中添加如下代码即可:

Paint paint = new Paint();
ColorMatrix matrix = new ColorMatrix();
matrix.setSaturation(0);
paint.setColorFilter(new ColorMatrixColorFilter(matrix));
getWindow().getDecorView().setLayerType(View.LAYER_TYPE_HARDWARE, paint);
//如果页面有webView,需加上下面代码
webView.setLayerType(View.LAYER_TYPE_HARDWARE, null);

END。

你可能感兴趣的:(Android)