PaintFlagsDrawFilterpublic class PaintFlagsDrawFilter extends DrawFilter
Constructors Summary |
---|
public 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.
// our native constructor can return 0, if the specified bits
// are effectively a no-op
mNativeInt = nativeConstructor(clearBits, setBits);
|
Methods Summary |
---|
private static native int | nativeConstructor(int clearBits, int setBits)
|
|