android.graphics
public
static
final
enum
android.graphics.Paint.Style
The Style specifies if the primitive being drawn is filled,
stroked, or both (in the same color). The default is FILL.
Summary
Enum Values
Paint.Style |
FILL |
Geometry and text drawn with this style will be filled, ignoring all
stroke-related settings in the paint. |
Paint.Style |
FILL_AND_STROKE |
Geometry and text drawn with this style will be both filled and
stroked at the same time, respecting the stroke-related fields on
the paint. |
Paint.Style |
STROKE |
Geometry and text drawn with this style will be stroked, respecting
the stroke-related fields on the paint. |
Public Methods
Methods inherited
from class
java.lang.Enum
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Enum Values
public
static
final
Paint.Style
FILL
Geometry and text drawn with this style will be filled, ignoring all
stroke-related settings in the paint.
public
static
final
Paint.Style
FILL_AND_STROKE
Geometry and text drawn with this style will be both filled and
stroked at the same time, respecting the stroke-related fields on
the paint.
public
static
final
Paint.Style
STROKE
Geometry and text drawn with this style will be stroked, respecting
the stroke-related fields on the paint.
Public Methods
public
static
final
Style[]
values()