App变成灰色

589 阅读1分钟

在BaseActivity的OnCreate中增加这个代码,可以让App整个变成灰色,测试了没问题。

Paint paint = new Paint();
ColorMatrix cm = new ColorMatrix();
cm.setSaturation(0);
paint.setColorFilter(new ColorMatrixColorFilter(cm));
getWindow().getDecorView().setLayerType(View.LAYER_TYPE_HARDWARE, paint);