垂直的SeekBar:VerticalSeekBar

时间:2021-07-14 05:06:15
  1. public class VerticalSeekBar extends AbsSeekBar {
  2. private Drawable mThumb;
  3. public interface OnSeekBarChangeListener {
  4. void onProgressChanged(VerticalSeekBar VerticalSeekBar, int progress, boolean fromUser);
  5. void onStartTrackingTouch(VerticalSeekBar VerticalSeekBar);
  6. void onStopTrackingTouch(VerticalSeekBar VerticalSeekBar);
  7. }
  8. private OnSeekBarChangeListener mOnSeekBarChangeListener;
  9. public VerticalSeekBar(Context context) {
  10. this(context, null);
  11. }
  12. public VerticalSeekBar(Context context, AttributeSet attrs) {
  13. this(context, attrs, android.R.attr.seekBarStyle);
  14. }
  15. public VerticalSeekBar(Context context, AttributeSet attrs, int defStyle) {
  16. super(context, attrs, defStyle);
  17. }
  18. public void setOnSeekBarChangeListener(OnSeekBarChangeListener l) {
  19. mOnSeekBarChangeListener = l;
  20. }
  21. void onStartTrackingTouch() {
  22. if (mOnSeekBarChangeListener != null) {
  23. mOnSeekBarChangeListener.onStartTrackingTouch(this);
  24. }
  25. }
  26. void onStopTrackingTouch() {
  27. if (mOnSeekBarChangeListener != null) {
  28. mOnSeekBarChangeListener.onStopTrackingTouch(this);
  29. }
  30. }
  31. void onProgressRefresh(float scale, boolean fromUser) {
  32. Drawable thumb = mThumb;
  33. if (thumb != null) {
  34. setThumbPos(getHeight(), thumb, scale, Integer.MIN_VALUE);
  35. invalidate();
  36. }
  37. if (mOnSeekBarChangeListener != null) {
  38. mOnSeekBarChangeListener.onProgressChanged(this, getProgress(), isPressed());
  39. }
  40. }
  41. private void setThumbPos(int w, Drawable thumb, float scale, int gap) {
  42. int available = w - getPaddingLeft() - getPaddingRight();
  43. int thumbWidth = thumb.getIntrinsicWidth();
  44. int thumbHeight = thumb.getIntrinsicHeight();
  45. available -= thumbWidth;
  46. // The extra space for the thumb to move on the track
  47. available += getThumbOffset() * 2;
  48. int thumbPos = (int) (scale * available);
  49. int topBound, bottomBound;
  50. if (gap == Integer.MIN_VALUE) {
  51. Rect oldBounds = thumb.getBounds();
  52. topBound = oldBounds.top;
  53. bottomBound = oldBounds.bottom;
  54. } else {
  55. topBound = gap;
  56. bottomBound = gap + thumbHeight;
  57. }
  58. thumb.setBounds(thumbPos, topBound, thumbPos + thumbWidth, bottomBound);
  59. }
  60. @Override
  61. protected void onDraw(Canvas c) {
  62. c.rotate(-90);// 反转90度,将水平SeekBar竖起来
  63. c.translate(-getHeight(), 0);// 将经过旋转后得到的VerticalSeekBar移到正确的位置,注意经旋转后宽高值互换
  64. super.onDraw(c);
  65. }
  66. @Override
  67. protected synchronized void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  68. super.onMeasure(heightMeasureSpec, widthMeasureSpec);
  69. setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());// 宽高值互换
  70. }
  71. @Override
  72. public void setThumb(Drawable thumb) {
  73. mThumb = thumb;
  74. super.setThumb(thumb);
  75. }
  76. @Override
  77. protected void onSizeChanged(int w, int h, int oldw, int oldh) {
  78. super.onSizeChanged(h, w, oldw, oldh);// 宽高值互换
  79. }
  80. // 与源码完全相同,仅为调用宽高值互换处理的onStartTrackingTouch()方法
  81. @Override
  82. public boolean onTouchEvent(MotionEvent event) {
  83. if (!isEnabled()) {
  84. return false;
  85. }
  86. switch (event.getAction()) {
  87. case MotionEvent.ACTION_DOWN: {
  88. setPressed(true);
  89. onStartTrackingTouch();
  90. trackTouchEvent(event);
  91. break;
  92. }
  93. case MotionEvent.ACTION_MOVE: {
  94. trackTouchEvent(event);
  95. attemptClaimDrag();
  96. break;
  97. }
  98. case MotionEvent.ACTION_UP: {
  99. trackTouchEvent(event);
  100. onStopTrackingTouch();
  101. setPressed(false);
  102. // ProgressBar doesn't know to repaint the thumb drawable
  103. // in its inactive state when the touch stops (because the
  104. // value has not apparently changed)
  105. invalidate();
  106. break;
  107. }
  108. case MotionEvent.ACTION_CANCEL: {
  109. onStopTrackingTouch();
  110. setPressed(false);
  111. invalidate(); // see above explanation
  112. break;
  113. }
  114. default:
  115. break;
  116. }
  117. return true;
  118. }
  119. // 宽高值互换处理
  120. private void trackTouchEvent(MotionEvent event) {
  121. final int height = getHeight();
  122. final int available = height - getPaddingBottom() - getPaddingTop();
  123. int Y = (int) event.getY();
  124. float scale;
  125. float progress = 0;
  126. if (Y > height - getPaddingBottom()) {
  127. scale = 0.0f;
  128. } else if (Y < getPaddingTop()) {
  129. scale = 1.0f;
  130. } else {
  131. scale = (float) (height - getPaddingBottom() - Y) / (float) available;
  132. }
  133. final int max = getMax();
  134. progress = scale * max;
  135. setProgress((int) progress);
  136. }
  137. private void attemptClaimDrag() {
  138. if (getParent() != null) {
  139. getParent().requestDisallowInterceptTouchEvent(true);
  140. }
  141. }
  142. }