FileDocCategorySizeDatePackage
BlurMaskFilter.javaAPI DocAndroid 5.1 API1919Thu Mar 12 22:22:30 GMT 2015android.graphics

BlurMaskFilter

public class BlurMaskFilter extends MaskFilter
This takes a mask, and blurs its edge by the specified radius. Whether or or not to include the original mask, and whether the blur goes outside, inside, or straddles, the original mask's border, is controlled by the Blur enum.

Fields Summary
Constructors Summary
public BlurMaskFilter(float radius, Blur style)
Create a blur maskfilter.

param
radius The radius to extend the blur from the original mask. Must be > 0.
param
style The Blur to use
return
The new blur maskfilter

        native_instance = nativeConstructor(radius, style.native_int);
    
Methods Summary
private static native longnativeConstructor(float radius, int style)