HomeSort by relevance Sort by last modified time
    Searched refs:mThumbPaint (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/view/
RoundScrollbarRenderer.java 37 private final Paint mThumbPaint = new Paint();
45 mThumbPaint.setAntiAlias(true);
46 mThumbPaint.setStrokeCap(Paint.Cap.ROUND);
47 mThumbPaint.setStyle(Paint.Style.STROKE);
70 mThumbPaint.setStrokeWidth(thumbWidth);
94 canvas.drawArc(mRect, startAngle, sweepAngle, false, mThumbPaint);
113 if (mThumbPaint.getColor() != thumbColor) {
114 mThumbPaint.setColor(thumbColor);
  /packages/apps/Launcher3/src/com/android/launcher3/views/
RecyclerViewFastScroller.java 82 private final Paint mThumbPaint;
125 mThumbPaint = new Paint();
126 mThumbPaint.setAntiAlias(true);
127 mThumbPaint.setColor(Themes.getColorAccent(context));
128 mThumbPaint.setStyle(Paint.Style.FILL);
167 new FastScrollThumbDrawable(mThumbPaint, Utilities.isRtl(getResources())));
304 canvas.drawRoundRect(-halfW, 0, halfW, mThumbHeight, r, r, mThumbPaint);

Completed in 133 milliseconds