java.lang.Object | |||
↳ | android.graphics.drawable.shapes.Shape | ||
↳ | android.graphics.drawable.shapes.RectShape | ||
↳ | android.graphics.drawable.shapes.RoundRectShape |
Creates a rounded-corner rectangle. Optionally, an inset (rounded) rectangle
can be included (to make a sort of "O" shape).
The rounded rectangle can be drawn to a Canvas with its own draw() method,
but more graphical control is available if you instead pass
the RoundRectShape to a ShapeDrawable
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
RoundRectShape constructor.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates and returns a copy of this
Object . | |||||||||||
Draw this shape into the provided Canvas, with the provided Paint.
| |||||||||||
Compute the Outline of the shape.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Callback method called when
resize(float, float) is executed. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.graphics.drawable.shapes.RectShape
| |||||||||||
From class
android.graphics.drawable.shapes.Shape
| |||||||||||
From class
java.lang.Object
|
RoundRectShape constructor. Specifies an outer (round)rect and an optional inner (round)rect.
outerRadii | An array of 8 radius values, for the outer roundrect. The first two floats are for the top-left corner (remaining pairs correspond clockwise). For no rounded corners on the outer rectangle, pass null. |
---|---|
inset | A RectF that specifies the distance from the inner rect to each side of the outer rect. For no inner, pass null. |
innerRadii | An array of 8 radius values, for the inner roundrect. The first two floats are for the top-left corner (remaining pairs correspond clockwise). For no rounded corners on the inner rectangle, pass null. If inset parameter is null, this parameter is ignored. |
Creates and returns a copy of this Object
. The default
implementation returns a so-called "shallow" copy: It creates a new
instance of the same class and then copies the field values (including
object references) from this instance to the new instance. A "deep" copy,
in contrast, would also recursively clone nested objects. A subclass that
needs to implement this kind of cloning should call super.clone()
to create the new instance and then create deep copies of the nested,
mutable objects.
CloneNotSupportedException |
---|
Draw this shape into the provided Canvas, with the provided Paint.
Before calling this, you must call resize(float, float)
.
canvas | the Canvas within which this shape should be drawn |
---|---|
paint | the Paint object that defines this shape's characteristics |
Compute the Outline of the shape. The default implementation does not supply an outline.
Callback method called when resize(float, float)
is executed.
w | the new width of the Shape |
---|---|
h | the new height of the Shape |