android.graphics.drawable.shapes
Class OvalShape
java.lang.Object
android.graphics.drawable.shapes.Shape
android.graphics.drawable.shapes.RectShape
android.graphics.drawable.shapes.OvalShape
public class OvalShape
- extends RectShape
Defines an oval shape.
The oval can be drawn to a Canvas with its own draw() method,
but more graphical control is available if you instead pass
the OvalShape to a ShapeDrawable.
|
Constructor Summary |
OvalShape()
OvalShape constructor. |
|
Method Summary |
void |
draw(Canvas canvas,
Paint paint)
Draw this shape into the provided Canvas, with the provided Paint. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
OvalShape
public OvalShape()
- OvalShape constructor.
draw
public void draw(Canvas canvas,
Paint paint)
- Description copied from class:
Shape
- Draw this shape into the provided Canvas, with the provided Paint.
Before calling this, you must call
Shape.resize(float,float).
- Overrides:
draw in class RectShape
- Parameters:
canvas - the Canvas within which this shape should be drawnpaint - the Paint object that defines this shape's characteristics
Please submit a feedback, bug or feature