OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mPathPaint
(Results
1 - 2
of
2
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/animation/
PathAnimations.java
196
Paint
mPathPaint
= new Paint();
215
mPathPaint
.setColor(0xFFFF0000);
216
mPathPaint
.setStrokeWidth(2.0f);
217
mPathPaint
.setStyle(Paint.Style.STROKE);
238
canvas.drawPath(mPath,
mPathPaint
);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
TextAlign.java
38
private Paint
mPathPaint
;
81
mPathPaint
= new Paint();
82
mPathPaint
.setAntiAlias(true);
83
mPathPaint
.setColor(0x800000FF);
84
mPathPaint
.setStyle(Paint.Style.STROKE);
139
canvas.drawPath(mPath,
mPathPaint
);
144
canvas.drawPath(mPath,
mPathPaint
);
149
canvas.drawPath(mPath,
mPathPaint
);
Completed in 161 milliseconds