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/
BaseRecyclerViewFastScrollBar.java 55 @Thunk Paint mThumbPaint;
88 mThumbPaint = new Paint();
89 mThumbPaint.setAntiAlias(true);
90 mThumbPaint.setColor(mThumbInactiveColor);
91 mThumbPaint.setStyle(Paint.Style.FILL);
241 canvas.drawPath(mThumbPath, mThumbPaint);
263 mThumbPaint.getColor(), isScrolling ? mThumbActiveColor : mThumbInactiveColor);
267 mThumbPaint.setColor((Integer) animator.getAnimatedValue());

Completed in 36 milliseconds