to top
Android APIs
public class

OvalShape

extends RectShape
java.lang.Object
   ↳ android.graphics.drawable.shapes.Shape
     ↳ android.graphics.drawable.shapes.RectShape
       ↳ android.graphics.drawable.shapes.OvalShape

Class Overview

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

? Examples
OvalShape()
OvalShape constructor.
Public Methods

? Examples
void draw( Canvas canvas, Paint paint)
Draw this shape into the provided Canvas, with the provided Paint.
[Expand]
Inherited Methods
From class android.graphics.drawable.shapes.RectShape
From class android.graphics.drawable.shapes.Shape
From class java.lang.Object

Public Constructors

public OvalShape ()

Added in API level 1

OvalShape constructor.

Public Methods

public void draw (Canvas canvas, Paint paint)

Added in API level 1

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
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.