Searched refs:mBorderPaint (Results 1 - 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DAccountAvatarDrawable.java47 private final Paint mBorderPaint; field in class:AccountAvatarDrawable
66 mBorderPaint = new Paint();
67 mBorderPaint.setColor(Color.TRANSPARENT);
68 mBorderPaint.setStyle(Style.STROKE);
69 mBorderPaint.setStrokeWidth(mBorderWidth);
70 mBorderPaint.setAntiAlias(true);
121 canvas.drawCircle(bounds.centerX(), bounds.centerY(), radius, mBorderPaint);
H A DContactDrawable.java71 private final Paint mBorderPaint; field in class:ContactDrawable
89 mBorderPaint = new Paint();
90 mBorderPaint.setColor(Color.TRANSPARENT);
91 mBorderPaint.setStyle(Paint.Style.STROKE);
92 mBorderPaint.setStrokeWidth(mBorderWidth);
93 mBorderPaint.setAntiAlias(true);
161 canvas.drawCircle(bounds.centerX(), bounds.centerY(), radius, mBorderPaint);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
H A DCategoryView.java44 private Paint mBorderPaint; field in class:CategoryView
66 mBorderPaint = new Paint(mSelectPaint);
67 mBorderPaint.setColor(Color.BLACK);
126 mSelectionStroke, mSelectPaint, mBorderStroke, mBorderPaint);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageDraw.java41 private Paint mBorderPaint = new Paint(); field in class:ImageDraw
85 mBorderPaint.setColor(mBorderColor);
86 mBorderPaint.setStyle(Paint.Style.STROKE);
87 mBorderPaint.setStrokeWidth(edge);

Completed in 84 milliseconds