灰色模式

private fun Activity.black() {
        window.decorView.setLayerType(
            View.LAYER_TYPE_HARDWARE,
            Paint().apply {
                colorFilter = ColorMatrixColorFilter(ColorMatrix().apply { setSaturation(0f) })
            })
    }

你可能感兴趣的:(灰色模式)