Here you can find the source of restoreCanvasColors(Paint paint)
Parameter | Description |
---|---|
paint | a parameter |
public static void restoreCanvasColors(Paint paint)
//package com.java2s; import android.graphics.Paint; public class Main { /**// w ww. j ava 2s . c o m * * @param paint */ public static void restoreCanvasColors(Paint paint) { paint.setColorFilter(null); } }