Example usage for Java android.graphics Outline fields, constructors, methods, implement or subclass
The text is from its open source code.
Outline() Constructs an empty Outline. |
boolean | isEmpty() Returns whether the Outline is empty. |
void | offset(int dx, int dy) Offsets the Outline by (dx,dy) |
void | setConvexPath(@NonNull Path convexPath) Sets the Constructs an Outline from a android.graphics.Path#isConvex() convex path . |
void | setOval(int left, int top, int right, int bottom) Sets the outline to the oval defined by input rect. |
void | setRect(int left, int top, int right, int bottom) Sets the Outline to the rounded rect defined by the input rect, and corner radius. |
void | setRoundRect(int left, int top, int right, int bottom, float radius) Sets the Outline to the rounded rect defined by the input rect, and corner radius. |