android.graphics.drawable.shapes.OvalShape
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.
Summary
Public Constructors
Public Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
public
OvalShape()
OvalShape constructor.
Public Methods
public
void
draw(Canvas canvas, Paint paint)
Draw this shape into the provided Canvas, with the provided Paint.
Before calling this, you must call
resize(float, float).
Parameters
canvas
| the Canvas within which this shape should be drawn |
paint
| the Paint object that defines this shape's characteristics
|