FileDocCategorySizeDatePackage
Xfermode.javaAPI DocAndroid 5.1 API1610Thu Mar 12 22:22:30 GMT 2015android.graphics

Xfermode

public class Xfermode extends Object
Xfermode is the base class for objects that are called to implement custom "transfer-modes" in the drawing pipeline. The static function Create(Modes) can be called to return an instance of any of the predefined subclasses as specified in the Modes enum. When an Xfermode is assigned to an Paint, then objects drawn with that paint have the xfermode applied.

Fields Summary
long
native_instance
Constructors Summary
Methods Summary
protected voidfinalize()

        try {
            finalizer(native_instance);
        } finally {
            super.finalize();
        }
    
private static native voidfinalizer(long native_instance)