美文网首页
将页面置灰(默哀模式)

将页面置灰(默哀模式)

作者: 小相柳 | 来源:发表于2022-12-01 13:30 被阅读0次
     public static void setViewSaturation(View root, float sat) {
            if (root != null) {
                if (!(sat < 0.0F) && !(sat > 1.0F)) {
                    Paint paint = new Paint();
                    ColorMatrix cm = new ColorMatrix();
                    cm.setSaturation(sat);
                    paint.setColorFilter(new ColorMatrixColorFilter(cm));
                    root.setLayerType(View.LAYER_TYPE_HARDWARE, paint);
                }
            }
        }
    

    相关文章

      网友评论

          本文标题:将页面置灰(默哀模式)

          本文链接:https://www.haomeiwen.com/subject/lavefdtx.html