在今年一些纪念日中,很多app都开始使用黑白色主题,效果如下: 今天我们也来实现一下,方式很简单。代码如下: 只需要在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
.setLayerType(View
.LAYER_TYPE_HARDWARE
, null
);
END。
转载请注明原文地址:https://ipadbbs.8miu.com/read-26513.html