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