PathDashPathEffectpublic class PathDashPathEffect extends PathEffect
Constructors Summary |
---|
public PathDashPathEffect(Path shape, float advance, float phase, Style style)Dash the drawn path by stamping it with the specified shape. This only
applies to drawings when the paint's style is STROKE or STROKE_AND_FILL.
If the paint's style is FILL, then this effect is ignored. The paint's
strokeWidth does not affect the results.
native_instance = nativeCreate(shape.ni(), advance, phase,
style.native_style);
|
Methods Summary |
---|
private static native int | nativeCreate(int native_path, float advance, float phase, int native_style)
|
|