package cn.anycall.ju; import android.content.Context; import android.graphics.Canvas; import android.util.AttributeSet; import android.util.Log; import android.view.MotionEvent; import android.view.VelocityTracker; import android.view.View; import android.view.ViewConfiguration; import android.view.ViewGroup; import android.widget.Scroller; /** * 仿Launcher中的WorkSapce,可以左右滑动切换屏幕的类 * */ public class ScrollLayout extends ViewGroup { private static final String TAG = "ScrollLayout"; private Scroller mScroller;//滚动封装类 private VelocityTracker mVelocityTracker;//测量touch事件的触发速度 private int mCurScreen;//当前屏幕 private int mDefaultScreen = 0;//默认屏幕 private static final int TOUCH_STATE_REST = 0;//TOUCH状态为静止 private static final int TOUCH_STATE_SCROLLING = 1;//TOUCH状态为滚动 private static final int SNAP_VELOCITY = 600;//瞬时速度 private int mTouchState = TOUCH_STATE_REST;//当前状态 private int mTouchSlop; private float mLastMotionX;//最终的X方向坐标 private float mLastMotionY;//最终的Y方向坐标 private int currentScreenIndex = 0;//当前屏幕索引值 public int getCurrentScreenIndex() { return currentScreenIndex; } public void setCurrentScreenIndex(int currentScreenIndex) { this.currentScreenIndex = currentScreenIndex; } public ScrollLayout(Context context, AttributeSet attrs) { this(context, attrs, 0); // TODO Auto-generated constructor stub } public ScrollLayout(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // TODO Auto-generated constructor stub mScroller = new Scroller(context); mCurScreen = mDefaultScreen; mTouchSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop(); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { // TODO Auto-generated method stub int childLeft = 0; final int childCount = getChildCount(); System.out.println("childCount=" + childCount); for (int i = 0; i < childCount; i++) { final View childView = getChildAt(i); if (childView.getVisibility() != View.GONE) { final int childWidth = childView.getMeasuredWidth(); childView.layout(childLeft, 0, childLeft + childWidth, childView.getMeasuredHeight()); childLeft += childWidth; } } } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { Log.e(TAG, "onMeasure"); super.onMeasure(widthMeasureSpec, heightMeasureSpec); final int width = MeasureSpec.getSize(widthMeasureSpec); final int widthMode = MeasureSpec.getMode(widthMeasureSpec); if (widthMode != MeasureSpec.EXACTLY) { throw new IllegalStateException( "ScrollLayout only canmCurScreen run at EXACTLY mode!"); } final int heightMode = MeasureSpec.getMode(heightMeasureSpec); if (heightMode != MeasureSpec.EXACTLY) { throw new IllegalStateException( "ScrollLayout only can run at EXACTLY mode!"); } // The children are given the same width and height as the scrollLayout final int count = getChildCount(); for (int i = 0; i < count; i++) { getChildAt(i).measure(widthMeasureSpec, heightMeasureSpec); } System.out.println("moving to screen " + mCurScreen); scrollTo(mCurScreen * width, 0);//移动到当前屏幕,屏幕index*屏幕宽 } /** * 拖动移动(非快速移动) * According to the position of current layout scroll to the destination * page.getScrollX返回值即为拖动以后停留的位置,通过该位置与屏幕宽度相除就可以确定该位置在哪一页, * 若在该基础上添加半页的大小,再舍去小数,就可以确定是停留在原来页还是向左或则右移动到邻居页 */ public void snapToDestination() { final int screenWidth = getWidth(); int sx=getScrollX(); final int destScreen = (sx + screenWidth / 2) / screenWidth;//添加半块屏幕的大小,使得滑动超过半块屏幕算一块,少于半块则回至原处 snapToScreen(destScreen); } /** * 封装scroller的startScroll来实现 * @param whichScreen */ public void snapToScreen(int whichScreen) { // get the valid layout page whichScreen = Math.max(0, Math.min(whichScreen, getChildCount() - 1)); if (getScrollX() != (whichScreen * getWidth())) {//当拖动后的位置和目的页起始位置不一致,则进行移动 final int delta = whichScreen * getWidth() - getScrollX(); mScroller.startScroll(getScrollX(), 0, delta, 0, Math.abs(delta) * 2);//相当于移动一个像素点要2毫秒 mCurScreen = whichScreen; invalidate(); // Redraw the layout } } public void setToScreen(int whichScreen) {//直接滑动一个屏幕 whichScreen = Math.max(0, Math.min(whichScreen, getChildCount() - 1)); mCurScreen = whichScreen; scrollTo(whichScreen * getWidth(), 0); } public int getCurScreen() { return mCurScreen; } @Override public void computeScroll() { // TODO Auto-generated method stub if (mScroller.computeScrollOffset()) { scrollTo(mScroller.getCurrX(), mScroller.getCurrY()); postInvalidate(); } } @Override public boolean onTouchEvent(MotionEvent event) { // TODO Auto-generated method stub if (mVelocityTracker == null) { mVelocityTracker = VelocityTracker.obtain(); } mVelocityTracker.addMovement(event); final int action = event.getAction(); final float x = event.getX(); final float y = event.getY(); switch (action) { case MotionEvent.ACTION_DOWN: Log.e(TAG, "event down!"); if (!mScroller.isFinished()) { mScroller.abortAnimation(); } mLastMotionX = x; break; case MotionEvent.ACTION_MOVE: int deltaX = (int) (mLastMotionX - x); mLastMotionX = x; scrollBy(deltaX, 0); break; case MotionEvent.ACTION_UP: Log.e(TAG, "event : up"); // if (mTouchState == TOUCH_STATE_SCROLLING) { final VelocityTracker velocityTracker = mVelocityTracker; velocityTracker.computeCurrentVelocity(1000); int velocityX = (int) velocityTracker.getXVelocity(); Log.e(TAG, "velocityX:" + velocityX); if (velocityX > SNAP_VELOCITY && mCurScreen > 0) { // Fling enough to move left Log.e(TAG, "snap left"); onScreenChangeListener.onScreenChange(mCurScreen - 1); System.out.println("mCurScreen=" + (mCurScreen - 1)); snapToScreen(mCurScreen - 1); } else if (velocityX < -SNAP_VELOCITY && mCurScreen < getChildCount() - 1) { // Fling enough to move right Log.e(TAG, "snap right"); onScreenChangeListener.onScreenChange(mCurScreen + 1); //只往右移动才加载数据 onScreenChangeListenerDataLoad.onScreenChange(mCurScreen+1); snapToScreen(mCurScreen + 1); } else { snapToDestination(); } if (mVelocityTracker != null) { mVelocityTracker.recycle(); mVelocityTracker = null; } // } mTouchState = TOUCH_STATE_REST; break; case MotionEvent.ACTION_CANCEL: mTouchState = TOUCH_STATE_REST; break; } return true; } //截获(返回true)所有事件,当当前状态是滑动状态时,在此截获将会使事件停留在该viewgroup中被处理 //否则将被传递到下一个viewgroup中处理。 @Override public boolean onInterceptTouchEvent(MotionEvent ev) { // TODO Auto-generated method stub Log.e(TAG, "onInterceptTouchEvent-slop:" + mTouchSlop); final int action = ev.getAction(); if ((action == MotionEvent.ACTION_MOVE) && (mTouchState != TOUCH_STATE_REST)) { return true; } final float x = ev.getX(); final float y = ev.getY(); switch (action) { case MotionEvent.ACTION_MOVE: final int xDiff = (int) Math.abs(mLastMotionX - x); if (xDiff > mTouchSlop) { mTouchState = TOUCH_STATE_SCROLLING; } break; case MotionEvent.ACTION_DOWN: mLastMotionX = x; mLastMotionY = y; mTouchState = mScroller.isFinished() ? TOUCH_STATE_REST : TOUCH_STATE_SCROLLING; break; case MotionEvent.ACTION_CANCEL: case MotionEvent.ACTION_UP: mTouchState = TOUCH_STATE_REST; break; } return mTouchState != TOUCH_STATE_REST; } //分页监听 public interface OnScreenChangeListener { void onScreenChange(int currentIndex); } private OnScreenChangeListener onScreenChangeListener; public void setOnScreenChangeListener( OnScreenChangeListener onScreenChangeListener) { this.onScreenChangeListener = onScreenChangeListener; } //动态数据监听 public interface OnScreenChangeListenerDataLoad { void onScreenChange(int currentIndex); } private OnScreenChangeListenerDataLoad onScreenChangeListenerDataLoad; public void setOnScreenChangeListenerDataLoad(OnScreenChangeListenerDataLoad onScreenChangeListenerDataLoad) { this.onScreenChangeListenerDataLoad = onScreenChangeListenerDataLoad; } }