|
| 1 | +package com.skymxc.demo.drag; |
| 2 | + |
| 3 | +import android.content.Context; |
| 4 | +import android.support.annotation.Nullable; |
| 5 | +import android.support.v4.view.ViewCompat; |
| 6 | +import android.support.v4.widget.ViewDragHelper; |
| 7 | +import android.util.AttributeSet; |
| 8 | +import android.util.Log; |
| 9 | +import android.view.MotionEvent; |
| 10 | +import android.view.View; |
| 11 | +import android.widget.LinearLayout; |
| 12 | + |
| 13 | +/** |
| 14 | + * Created by mxc on 2017/7/23. |
| 15 | + * description: |
| 16 | + */ |
| 17 | + |
| 18 | +public class SwipeItemLayout extends LinearLayout { |
| 19 | + private final double AUTO_OPEN_SPEED_LIMIT = 500.0; |
| 20 | + private View mActionView; |
| 21 | + private View mContentView; |
| 22 | + private int mDragDistance; |
| 23 | + private ViewDragHelper mDragHelper; |
| 24 | + private boolean isOpen; |
| 25 | + |
| 26 | + |
| 27 | + public SwipeItemLayout(Context context) { |
| 28 | + this(context, null); |
| 29 | + } |
| 30 | + |
| 31 | + public SwipeItemLayout(Context context, @Nullable AttributeSet attrs) { |
| 32 | + this(context, attrs, 0); |
| 33 | + } |
| 34 | + |
| 35 | + public SwipeItemLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { |
| 36 | + super(context, attrs, defStyleAttr); |
| 37 | + mDragHelper = ViewDragHelper.create(this, 1.0f, new SwipeItemDragHelper()); |
| 38 | + } |
| 39 | + |
| 40 | + @Override |
| 41 | + protected void onFinishInflate() { |
| 42 | + super.onFinishInflate(); |
| 43 | + mContentView = getChildAt(0); |
| 44 | + mActionView = getChildAt(1); |
| 45 | + } |
| 46 | + |
| 47 | + @Override |
| 48 | + protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
| 49 | + super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
| 50 | + mDragDistance = mActionView.getMeasuredWidth(); |
| 51 | + } |
| 52 | + |
| 53 | + @Override |
| 54 | + public boolean onInterceptTouchEvent(MotionEvent ev) { |
| 55 | + return mDragHelper.shouldInterceptTouchEvent(ev); |
| 56 | + } |
| 57 | + |
| 58 | + @Override |
| 59 | + public boolean onTouchEvent(MotionEvent event) { |
| 60 | + mDragHelper.processTouchEvent(event); |
| 61 | + return true; |
| 62 | + } |
| 63 | + |
| 64 | + /** |
| 65 | + * 因为要在 DragHelper的中使用动画 |
| 66 | + */ |
| 67 | + @Override |
| 68 | + public void computeScroll() { |
| 69 | + super.computeScroll(); |
| 70 | + if (mDragHelper.continueSettling(true)) { |
| 71 | + ViewCompat.postInvalidateOnAnimation(this); |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + class SwipeItemDragHelper extends ViewDragHelper.Callback { |
| 76 | + |
| 77 | + private int dragDx; |
| 78 | + |
| 79 | + @Override |
| 80 | + public boolean tryCaptureView(View child, int pointerId) { |
| 81 | + return child == mContentView || child == mActionView; |
| 82 | + } |
| 83 | + |
| 84 | + @Override |
| 85 | + public int clampViewPositionHorizontal(View child, int left, int dx) { |
| 86 | + dragDx+=dx; |
| 87 | + if (child == mContentView) { |
| 88 | + /** |
| 89 | + * 这个位置 的范围应该是在 0和 -dragDistance之间;最大是0;最小是 -dragDistance |
| 90 | + */ |
| 91 | + int leftBound = getPaddingLeft(); |
| 92 | + int minLeft = -leftBound - mDragDistance; |
| 93 | + int newLeft = Math.min(Math.max(minLeft, left), 0); |
| 94 | + return newLeft; |
| 95 | + } else { |
| 96 | + /** |
| 97 | + * 这个view的位置范围应该是在 父布局的宽度-actionView的宽和父布局的宽度之间; |
| 98 | + */ |
| 99 | + int leftBound = getPaddingLeft(); |
| 100 | + int minLeft = getWidth() - leftBound - mActionView.getWidth(); |
| 101 | + int newLeft = Math.min(Math.max(minLeft, left), getWidth()); |
| 102 | + return newLeft; |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + @Override |
| 107 | + public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { |
| 108 | + //同时移动 |
| 109 | + if (changedView == mContentView) { |
| 110 | + mActionView.offsetLeftAndRight(dx); |
| 111 | + } else { |
| 112 | + mContentView.offsetLeftAndRight(dx); |
| 113 | + } |
| 114 | + invalidate(); |
| 115 | +// Log.e("onViewPosition", "dx-->" + dx); |
| 116 | + } |
| 117 | + |
| 118 | + @Override |
| 119 | + public void onViewReleased(View releasedChild, float xvel, float yvel) { |
| 120 | + /** |
| 121 | + * 这里的速度 是这样计算的 每秒的拖动的像素 值 |
| 122 | + * 速度判断 |
| 123 | + * 如果向→滑动 速度肯定是 正数; |
| 124 | + * 如果向←滑动 速度肯定是 负数 |
| 125 | + * 如果 拖动距离 是 actionView的 ¼ 就允许打开或关闭 |
| 126 | + */ |
| 127 | + //根据速度决定是否打开 |
| 128 | + boolean settleToOpen = false; |
| 129 | + float realVel = Math.abs(xvel); |
| 130 | + int realDragX = Math.abs(dragDx); |
| 131 | + if (realVel > AUTO_OPEN_SPEED_LIMIT) { //根据速度判断 |
| 132 | + if (xvel > 0) { //右滑 |
| 133 | + settleToOpen = false; |
| 134 | + } else { //左滑 |
| 135 | + settleToOpen = true; |
| 136 | + } |
| 137 | + }else if(realDragX> mDragDistance/4){ //根据拖动距离判断 |
| 138 | + if (dragDx>0){ //右滑 |
| 139 | + settleToOpen = false; |
| 140 | + }else{ |
| 141 | + settleToOpen = true; |
| 142 | + } |
| 143 | + } |
| 144 | + isOpen = settleToOpen; |
| 145 | + int settleDestX = isOpen ? -mDragDistance : 0; |
| 146 | + Log.e("onViewReleased", "settleToOpen->" + settleToOpen + ";destX->" + settleDestX + ";xvel->" + xvel + ";dragDx-->" + dragDx); |
| 147 | + mDragHelper.smoothSlideViewTo(mContentView, settleDestX, 0); |
| 148 | + ViewCompat.postInvalidateOnAnimation(SwipeItemLayout.this); |
| 149 | + dragDx = 0; |
| 150 | + } |
| 151 | + } |
| 152 | + |
| 153 | + |
| 154 | +} |
0 commit comments