Most visited

Recently visited

Added in API level 1

PaintFlagsDrawFilter

public class PaintFlagsDrawFilter
extends DrawFilter

java.lang.Object
   ↳ android.graphics.DrawFilter
     ↳ android.graphics.PaintFlagsDrawFilter


Summary

Public constructors

PaintFlagsDrawFilter(int clearBits, int setBits)

Subclass of DrawFilter that affects every paint by first clearing the specified clearBits in the paint's flags, and then setting the specified setBits in the paint's flags.

Inherited methods

From class android.graphics.DrawFilter
From class java.lang.Object

Public constructors

PaintFlagsDrawFilter

Added in API level 1
PaintFlagsDrawFilter (int clearBits, 
                int setBits)

Subclass of DrawFilter that affects every paint by first clearing the specified clearBits in the paint's flags, and then setting the specified setBits in the paint's flags.

Parameters
clearBits int: These bits will be cleared in the paint's flags
setBits int: These bits will be set in the paint's flags

Hooray!