Searched defs:mBorderPaint (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DCircularBitmapDrawable.java41 private final Paint mBorderPaint = new Paint(); field in class:CircularBitmapDrawable
61 mBorderPaint.setColor(Color.TRANSPARENT);
62 mBorderPaint.setStyle(Style.STROKE);
63 mBorderPaint.setStrokeWidth(mBorderWidth);
64 mBorderPaint.setAntiAlias(true);
71 final boolean changed = mBorderPaint.getStrokeWidth() != borderWidth;
72 mBorderPaint.setStrokeWidth(borderWidth);
84 final boolean changed = mBorderPaint.getColor() != color;
85 mBorderPaint.setColor(color);
115 bounds.width() / 2f - mBorderWidth / 2, mBorderPaint);
[all...]
H A DStyledCornersBitmapDrawable.java58 private final Paint mBorderPaint = new Paint(); field in class:StyledCornersBitmapDrawable
95 mBorderPaint.setColor(Color.TRANSPARENT);
96 mBorderPaint.setStyle(Style.STROKE);
97 mBorderPaint.setStrokeWidth(mBorderWidth);
98 mBorderPaint.setAntiAlias(true);
111 final boolean changed = mBorderPaint.getStrokeWidth() != borderWidth;
112 mBorderPaint.setStrokeWidth(borderWidth);
124 final boolean changed = mBorderPaint.getColor() != color;
125 mBorderPaint.setColor(color);
287 canvas.drawPath(mClipPath, mBorderPaint);
[all...]

Completed in 9028 milliseconds