HorizontalViewPager.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package eu.kanade.mangafeed.widget;
  2. import android.content.Context;
  3. import android.support.v4.view.ViewPager;
  4. import android.util.AttributeSet;
  5. import android.view.GestureDetector;
  6. import android.view.MotionEvent;
  7. public class HorizontalViewPager extends ViewPager {
  8. private GestureDetector gestureDetector;
  9. private OnChapterBoundariesOutListener mOnChapterBoundariesOutListener;
  10. private OnChapterSingleTapListener mOnChapterSingleTapListener;
  11. private static final float LEFT_REGION = 0.33f;
  12. private static final float RIGHT_REGION = 0.66f;
  13. private static final float SWIPE_TOLERANCE = 0.25f;
  14. private float startDragX;
  15. public HorizontalViewPager(Context context, AttributeSet attrs) {
  16. super(context, attrs);
  17. gestureDetector = new GestureDetector(getContext(), new ReaderViewGestureListener());
  18. }
  19. @Override
  20. public boolean onInterceptTouchEvent(MotionEvent ev) {
  21. try {
  22. gestureDetector.onTouchEvent(ev);
  23. if ((ev.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
  24. if (this.getCurrentItem() == 0 || this.getCurrentItem() == this.getAdapter().getCount() - 1) {
  25. startDragX = ev.getX();
  26. }
  27. }
  28. return super.onInterceptTouchEvent(ev);
  29. } catch (IllegalArgumentException e) {
  30. // Do Nothing.
  31. }
  32. return false;
  33. }
  34. @Override
  35. public boolean onTouchEvent(MotionEvent ev) {
  36. try {
  37. if (mOnChapterBoundariesOutListener != null) {
  38. if (this.getCurrentItem() == 0) {
  39. if ((ev.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_UP) {
  40. float displacement = ev.getX() - startDragX;
  41. if (ev.getX() > startDragX && displacement > getWidth() * SWIPE_TOLERANCE) {
  42. mOnChapterBoundariesOutListener.onFirstPageOutEvent();
  43. return true;
  44. }
  45. startDragX = 0;
  46. }
  47. } else if (this.getCurrentItem() == this.getAdapter().getCount() - 1) {
  48. if ((ev.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_UP) {
  49. float displacement = startDragX - ev.getX();
  50. if (ev.getX() < startDragX && displacement > getWidth() * SWIPE_TOLERANCE) {
  51. mOnChapterBoundariesOutListener.onLastPageOutEvent();
  52. return true;
  53. }
  54. startDragX = 0;
  55. }
  56. }
  57. }
  58. return super.onTouchEvent(ev);
  59. } catch (IllegalArgumentException e) {
  60. // Do Nothing.
  61. }
  62. return false;
  63. }
  64. public boolean onImageTouch(MotionEvent event) {
  65. return gestureDetector.onTouchEvent(event);
  66. }
  67. public interface OnChapterBoundariesOutListener {
  68. public void onFirstPageOutEvent();
  69. public void onLastPageOutEvent();
  70. }
  71. public interface OnChapterSingleTapListener {
  72. public void onSingleTap();
  73. }
  74. public void setOnChapterBoundariesOutListener(OnChapterBoundariesOutListener onChapterBoundariesOutListener) {
  75. mOnChapterBoundariesOutListener = onChapterBoundariesOutListener;
  76. }
  77. public void setOnChapterSingleTapListener(OnChapterSingleTapListener onChapterSingleTapListener) {
  78. mOnChapterSingleTapListener = onChapterSingleTapListener;
  79. }
  80. private class ReaderViewGestureListener extends GestureDetector.SimpleOnGestureListener {
  81. @Override
  82. public boolean onSingleTapConfirmed(MotionEvent e) {
  83. final int position = getCurrentItem();
  84. final float positionX = e.getX();
  85. if (positionX < getWidth() * LEFT_REGION) {
  86. if (position != 0) {
  87. setCurrentItem(position - 1, true);
  88. } else {
  89. if (mOnChapterBoundariesOutListener != null) {
  90. mOnChapterBoundariesOutListener.onFirstPageOutEvent();
  91. }
  92. }
  93. } else if (positionX > getWidth() * RIGHT_REGION) {
  94. if (position != getAdapter().getCount() - 1) {
  95. setCurrentItem(position + 1, true);
  96. } else {
  97. if (mOnChapterBoundariesOutListener != null) {
  98. mOnChapterBoundariesOutListener.onLastPageOutEvent();
  99. }
  100. }
  101. } else {
  102. if (mOnChapterSingleTapListener != null) {
  103. mOnChapterSingleTapListener.onSingleTap();
  104. }
  105. }
  106. return true;
  107. }
  108. }
  109. }