android 1.6 launcher研究之launcher的左右滑动

参考: http://blog.csdn.net/assassin4824/archive/2011/05/30/6454923.aspx
http://blog.sina.com.cn/s/blog_4d142b550100s1sx.html
http://blog.csdn.net/xiaoxiaobian3310903/archive/2011/05/24/6443250.aspx
http://www.ibm.com/developerworks/cn/opensource/os-cn-android-anmt2/

ScrollLayout.java

Java代码 复制代码  收藏代码
  1. package com.lp;     
  2. import android.content.Context;     
  3. import android.graphics.Canvas;     
  4. import android.util.AttributeSet;     
  5. import android.util.Log;     
  6. import android.view.MotionEvent;     
  7. import android.view.VelocityTracker;     
  8. import android.view.View;     
  9. import android.view.ViewConfiguration;     
  10. import android.view.ViewGroup;     
  11. import android.widget.Scroller;     
  12. /**   
  13.  * 仿Launcher中的WorkSapce,可以左右滑动切换屏幕的类   
  14.  */     
  15. public class ScrollLayout extends ViewGroup {     
  16.     private static final String TAG = "ScrollLayout";     
  17.     private Scroller mScroller;     
  18.     private VelocityTracker mVelocityTracker;     
  19.          
  20.     private int mCurScreen;     
  21.     private int mDefaultScreen = 0;     
  22.          
  23.     private static final int TOUCH_STATE_REST = 0;     
  24.     private static final int TOUCH_STATE_SCROLLING = 1;     
  25.          
  26.     private static final int SNAP_VELOCITY = 600;     
  27.          
  28.     private int mTouchState = TOUCH_STATE_REST;     
  29.     private int mTouchSlop;     
  30.     private float mLastMotionX;     
  31.     private float mLastMotionY;     
  32.     public ScrollLayout(Context context, AttributeSet attrs) {     
  33.         this(context, attrs, 0);     
  34.         // TODO Auto-generated constructor stub     
  35.     }     
  36.     public ScrollLayout(Context context, AttributeSet attrs, int defStyle) {     
  37.         super(context, attrs, defStyle);     
  38.         // TODO Auto-generated constructor stub     
  39.         mScroller = new Scroller(context);     
  40.         //默认显示第一屏   
  41.         mCurScreen = mDefaultScreen;     
  42.         mTouchSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();     
  43.     }     
  44.     @Override     
  45.     protected void onLayout(boolean changed, int l, int t, int r, int b) {     
  46.         // TODO Auto-generated method stub     
  47.         if (changed) {     
  48.             int childLeft = 0;     
  49.             final int childCount = getChildCount();     
  50.                  
  51.             for (int i=0; i<childCount; i++) {     
  52.                 final View childView = getChildAt(i);     
  53.                 if (childView.getVisibility() != View.GONE) {     
  54.                     final int childWidth = childView.getMeasuredWidth();     
  55.                     childView.layout(childLeft, 0,      
  56.                             childLeft+childWidth, childView.getMeasuredHeight());     
  57.                     childLeft += childWidth;     
  58.                     //很明显 0 - 320 | 320 - 640 | 640 - 960 ...(假设屏幕宽320)   
  59.                 }     
  60.             }     
  61.         }     
  62.     }     
  63.     @Override       
  64.     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {        
  65.         Log.e(TAG, "onMeasure");     
  66.         super.onMeasure(widthMeasureSpec, heightMeasureSpec);        
  67.        
  68.         final int width = MeasureSpec.getSize(widthMeasureSpec);        
  69.         final int widthMode = MeasureSpec.getMode(widthMeasureSpec);        
  70.         if (widthMode != MeasureSpec.EXACTLY) {        
  71.             throw new IllegalStateException("ScrollLayout only canmCurScreen run at EXACTLY mode!");      
  72.         }        
  73.        
  74.         final int heightMode = MeasureSpec.getMode(heightMeasureSpec);        
  75.         if (heightMode != MeasureSpec.EXACTLY) {        
  76.             throw new IllegalStateException("ScrollLayout only can run at EXACTLY mode!");     
  77.         }        
  78.        
  79.         // The children are given the same width and height as the scrollLayout        
  80.         final int count = getChildCount();        
  81.         for (int i = 0; i < count; i++) {        
  82.             getChildAt(i).measure(widthMeasureSpec, heightMeasureSpec);        
  83.         }        
  84.         // Log.e(TAG, "moving to screen "+mCurScreen);       
  85.         //x坐标 y坐标   
  86.         //移动到第几屏   
  87.         scrollTo(mCurScreen * width, 0);              
  88.     }       
  89.          
  90.     /**   
  91.      * According to the position of current layout   
  92.      * scroll to the destination page.  
  93.      * 判断滑动的位置   
  94.      * 如果大于当前屏中间的位置 则换屏  
  95.      * 否则 仍然是这个屏   
  96.      * getScrollX x方向的偏移量  
  97.      */    
  98.        
  99.     public void snapToDestination() {     
  100.         final int screenWidth = getWidth();     
  101.         //判断   
  102.         final int destScreen = (getScrollX()+ screenWidth/2)/screenWidth;     
  103.         snapToScreen(destScreen);     
  104.     }     
  105.          
  106.     public void snapToScreen(int whichScreen) {     
  107.         // get the valid layout page     
  108.         whichScreen = Math.max(0, Math.min(whichScreen, getChildCount()-1));     
  109.         if (getScrollX() != (whichScreen*getWidth())) {     
  110.                  
  111.             final int delta = whichScreen*getWidth()-getScrollX();    
  112.             //开始滚动   
  113.             //x,y,x方向移动量,y方向移动量,滚动持续时间,负数往左滚   
  114.             mScroller.startScroll(getScrollX(), 0,      
  115.                     delta, 0, Math.abs(delta)*2);     
  116.             mCurScreen = whichScreen;     
  117.             invalidate();       // Redraw the layout     
  118.         }     
  119.     }     
  120.          
  121.     public void setToScreen(int whichScreen) {     
  122.         whichScreen = Math.max(0, Math.min(whichScreen, getChildCount()-1));     
  123.         mCurScreen = whichScreen;     
  124.         scrollTo(whichScreen*getWidth(), 0);     
  125.     }     
  126.          
  127.     public int getCurScreen() {     
  128.         return mCurScreen;     
  129.     }     
  130.     //只有当前LAYOUT中的某个CHILD导致SCROLL发生滚动,才会致使自己的COMPUTESCROLL被调用   
  131.     @Override     
  132.     public void computeScroll() {     
  133.         // TODO Auto-generated method stub     
  134.         Log.e(TAG,"computeScroll");   
  135.         //如果返回true,表示动画还没有结束   
  136.         //因为前面startScroll,所以只有在startScroll完成时 才会为false   
  137.         if (mScroller.computeScrollOffset()) {     
  138.             Log.e(TAG, mScroller.getCurrX()+"======"+mScroller.getCurrY());   
  139.             //产生了动画效果 每次滚动一点    
  140.            scrollTo(mScroller.getCurrX(), mScroller.getCurrY());     
  141.            postInvalidate();     
  142.         }     
  143.     }     
  144.     @Override     
  145.     public boolean onTouchEvent(MotionEvent event) {     
  146.         // TODO Auto-generated method stub     
  147.         Log.e(TAG,"onTouchEvent start");   
  148.         if (mVelocityTracker == null) {     
  149.             mVelocityTracker = VelocityTracker.obtain();     
  150.         }     
  151.         mVelocityTracker.addMovement(event);     
  152.              
  153.         final int action = event.getAction();     
  154.         final float x = event.getX();     
  155.         final float y = event.getY();     
  156.              
  157.         switch (action) {     
  158.         case MotionEvent.ACTION_DOWN:     
  159.             Log.e(TAG, "event down! "+mScroller.isFinished());     
  160.             //如果屏幕的滚动动画没有结束 你就按下了 就结束动画   
  161.             if (!mScroller.isFinished()){     
  162.                 mScroller.abortAnimation();     
  163.             }     
  164.             mLastMotionX = x;     
  165.             break;     
  166.                  
  167.         case MotionEvent.ACTION_MOVE:     
  168.             Log.e(TAG, "event move!");    
  169.             //取得偏移量   
  170.             int deltaX = (int)(mLastMotionX - x);    
  171.             Log.e(TAG,"detaX: "+deltaX);   
  172.             mLastMotionX = x;     
  173.             //x方向的偏移量 y方向的偏移量   
  174.             scrollBy(deltaX, 0);     
  175.             break;     
  176.                  
  177.         case MotionEvent.ACTION_UP:     
  178.             Log.e(TAG, "event : up");        
  179.             // if (mTouchState == TOUCH_STATE_SCROLLING) {        
  180.             final VelocityTracker velocityTracker = mVelocityTracker;        
  181.             velocityTracker.computeCurrentVelocity(1000);        
  182.             int velocityX = (int) velocityTracker.getXVelocity();        
  183.             Log.e(TAG, "velocityX:"+velocityX);      
  184.                  
  185.             if (velocityX > SNAP_VELOCITY && mCurScreen > 0) {        
  186.                 // Fling enough to move left        
  187.                 Log.e(TAG, "snap left");     
  188.                 snapToScreen(mCurScreen - 1);        
  189.             } else if (velocityX < -SNAP_VELOCITY        
  190.                     && mCurScreen < getChildCount() - 1) {        
  191.                 // Fling enough to move right        
  192.                 Log.e(TAG, "snap right");     
  193.                 snapToScreen(mCurScreen + 1);        
  194.             } else {        
  195.                 //一般都掉用这个   
  196.                 snapToDestination();        
  197.             }        
  198.             if (mVelocityTracker != null) {        
  199.                 mVelocityTracker.recycle();        
  200.                 mVelocityTracker = null;        
  201.             }        
  202.             // }        
  203.             mTouchState = TOUCH_STATE_REST;        
  204.             break;     
  205.         case MotionEvent.ACTION_CANCEL:     
  206.             mTouchState = TOUCH_STATE_REST;     
  207.             break;     
  208.         }     
  209.              
  210.         return true;     
  211.     }     
  212.     //这个感觉没什么作用 不管true还是false 都是会执行onTouchEvent的 因为子view里面onTouchEvent返回false了   
  213.     @Override     
  214.     public boolean onInterceptTouchEvent(MotionEvent ev) {     
  215.         // TODO Auto-generated method stub     
  216.         Log.e(TAG, "onInterceptTouchEvent-slop:"+mTouchSlop);     
  217.              
  218.         final int action = ev.getAction();     
  219.         if ((action == MotionEvent.ACTION_MOVE) &&      
  220.                 (mTouchState != TOUCH_STATE_REST)) {     
  221.             return true;     
  222.         }     
  223.              
  224.         final float x = ev.getX();     
  225.         final float y = ev.getY();     
  226.              
  227.         switch (action) {     
  228.         case MotionEvent.ACTION_MOVE:     
  229.             Log.e(TAG,"onInterceptTouchEvent move");   
  230.             final int xDiff = (int)Math.abs(mLastMotionX-x);     
  231.             if (xDiff>mTouchSlop) {     
  232.                 mTouchState = TOUCH_STATE_SCROLLING;     
  233.                      
  234.             }     
  235.             break;     
  236.                  
  237.         case MotionEvent.ACTION_DOWN:     
  238.             Log.e(TAG,"onInterceptTouchEvent down");   
  239.             mLastMotionX = x;     
  240.             mLastMotionY = y;     
  241.             Log.e(TAG,mScroller.isFinished()+"");   
  242.             mTouchState = mScroller.isFinished()? TOUCH_STATE_REST : TOUCH_STATE_SCROLLING;     
  243.             break;     
  244.                  
  245.         case MotionEvent.ACTION_CANCEL:     
  246.         case MotionEvent.ACTION_UP:     
  247.             Log.e(TAG,"onInterceptTouchEvent up or cancel");   
  248.             mTouchState = TOUCH_STATE_REST;     
  249.             break;     
  250.         }     
  251.         Log.e(TAG,mTouchState+"===="+TOUCH_STATE_REST);   
  252.         return mTouchState != TOUCH_STATE_REST;     
  253.     }     
  254.          
  255. }    
package com.lp;  
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;  
      
    private int mCurScreen;  
    private int mDefaultScreen = 0;  
      
    private static final int TOUCH_STATE_REST = 0;  
    private static final int TOUCH_STATE_SCROLLING = 1;  
      
    private static final int SNAP_VELOCITY = 600;  
      
    private int mTouchState = TOUCH_STATE_REST;  
    private int mTouchSlop;  
    private float mLastMotionX;  
    private float mLastMotionY;  
    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  
        if (changed) {  
            int childLeft = 0;  
            final int childCount = getChildCount();  
              
            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;  
                    //很明显 0 - 320 | 320 - 640 | 640 - 960 ...(假设屏幕宽320)
                }  
            }  
        }  
    }  
    @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);     
        }     
        // Log.e(TAG, "moving to screen "+mCurScreen);    
        //x坐标 y坐标
        //移动到第几屏
        scrollTo(mCurScreen * width, 0);           
    }    
      
    /** 
     * According to the position of current layout 
     * scroll to the destination page.
     * 判断滑动的位置 
     * 如果大于当前屏中间的位置 则换屏
     * 否则 仍然是这个屏 
     * getScrollX x方向的偏移量
     */ 
    
    public void snapToDestination() {  
        final int screenWidth = getWidth();  
        //判断
        final int destScreen = (getScrollX()+ screenWidth/2)/screenWidth;  
        snapToScreen(destScreen);  
    }  
      
    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(); 
            //开始滚动
            //x,y,x方向移动量,y方向移动量,滚动持续时间,负数往左滚
            mScroller.startScroll(getScrollX(), 0,   
                    delta, 0, Math.abs(delta)*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;  
    }  
    //只有当前LAYOUT中的某个CHILD导致SCROLL发生滚动,才会致使自己的COMPUTESCROLL被调用
    @Override  
    public void computeScroll() {  
        // TODO Auto-generated method stub  
        Log.e(TAG,"computeScroll");
        //如果返回true,表示动画还没有结束
        //因为前面startScroll,所以只有在startScroll完成时 才会为false
        if (mScroller.computeScrollOffset()) {  
            Log.e(TAG, mScroller.getCurrX()+"======"+mScroller.getCurrY());
            //产生了动画效果 每次滚动一点 
           scrollTo(mScroller.getCurrX(), mScroller.getCurrY());  
           postInvalidate();  
        }  
    }  
    @Override  
    public boolean onTouchEvent(MotionEvent event) {  
        // TODO Auto-generated method stub  
        Log.e(TAG,"onTouchEvent start");
        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! "+mScroller.isFinished());  
            //如果屏幕的滚动动画没有结束 你就按下了 就结束动画
            if (!mScroller.isFinished()){  
                mScroller.abortAnimation();  
            }  
            mLastMotionX = x;  
            break;  
              
        case MotionEvent.ACTION_MOVE:  
            Log.e(TAG, "event move!"); 
            //取得偏移量
            int deltaX = (int)(mLastMotionX - x); 
            Log.e(TAG,"detaX: "+deltaX);
            mLastMotionX = x;  
            //x方向的偏移量 y方向的偏移量
            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");  
                snapToScreen(mCurScreen - 1);     
            } else if (velocityX < -SNAP_VELOCITY     
                    && mCurScreen < getChildCount() - 1) {     
                // Fling enough to move right     
                Log.e(TAG, "snap right");  
                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还是false 都是会执行onTouchEvent的 因为子view里面onTouchEvent返回false了
    @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:  
            Log.e(TAG,"onInterceptTouchEvent move");
            final int xDiff = (int)Math.abs(mLastMotionX-x);  
            if (xDiff>mTouchSlop) {  
                mTouchState = TOUCH_STATE_SCROLLING;  
                  
            }  
            break;  
              
        case MotionEvent.ACTION_DOWN:  
            Log.e(TAG,"onInterceptTouchEvent down");
            mLastMotionX = x;  
            mLastMotionY = y;  
            Log.e(TAG,mScroller.isFinished()+"");
            mTouchState = mScroller.isFinished()? TOUCH_STATE_REST : TOUCH_STATE_SCROLLING;  
            break;  
              
        case MotionEvent.ACTION_CANCEL:  
        case MotionEvent.ACTION_UP:  
            Log.e(TAG,"onInterceptTouchEvent up or cancel");
            mTouchState = TOUCH_STATE_REST;  
            break;  
        }  
        Log.e(TAG,mTouchState+"===="+TOUCH_STATE_REST);
        return mTouchState != TOUCH_STATE_REST;  
    }  
      
}  



main.xml

Java代码 复制代码  收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>     
  2. <com.lp.ScrollLayout     
  3.   xmlns:android="http://schemas.android.com/apk/res/android"     
  4.   android:id="@+id/ScrollLayoutTest"     
  5.   android:layout_width="fill_parent"     
  6.   android:layout_height="fill_parent">     
  7. <LinearLayout     
  8.   android:background="#FF00"     
  9.   android:layout_width="fill_parent"     
  10.   android:layout_height="fill_parent"></LinearLayout>     
  11.        
  12. <FrameLayout     
  13.   android:background="#F0F0"     
  14.   android:layout_width="fill_parent"     
  15.   android:layout_height="fill_parent"></FrameLayout>     
  16.        
  17. <FrameLayout     
  18.   android:background="#F00F"     
  19.   android:layout_width="fill_parent"     
  20.   android:layout_height="fill_parent">     
  21.   </FrameLayout>     
  22.        
  23. <LinearLayout     
  24.   android:background="#FF00"     
  25.   android:layout_width="fill_parent"     
  26.   android:layout_height="fill_parent">     
  27.   <Button     
  28.     android:layout_width="wrap_content"     
  29.     android:layout_height="wrap_content"     
  30.     android:text="Button1" />     
  31.   </LinearLayout>     
  32. <LinearLayout     
  33.   android:layout_width="wrap_content"     
  34.   android:layout_height="wrap_content">     
  35.   <Button     
  36.     android:layout_width="wrap_content"     
  37.     android:layout_height="wrap_content"     
  38.     android:text="Button2" />     
  39.   </LinearLayout>     
  40. </com.lp.ScrollLayout>    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值