android一个可以左右滑动切换的视图类

package com.SS.UIControlSS;

import android.content.Context;
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;

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) {      
        super(context);      
        // 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;      
                }      
            }      
        }      
    }      
    @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);         
        scrollTo(mCurScreen * width, 0);               
    }        
          
    /**   
     * According to the position of current layout   
     * scroll to the destination page.   
     */      
    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();      
            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;      
    }      
          
    @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");      
                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;      
    }      
    @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;      
    }      
          
}      
 <com.SS.UIControlSS.ScrollLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/ScrollLayoutTest"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
		<!-- 第一个页面 -->
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="@color/peachpuff"
            android:orientation="vertical" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/shape"
                android:gravity="center"
                android:text="嘿嘿"
                android:textColor="@color/lightblue"
                android:textSize="30sp" />

            <GridView
                android:id="@+id/gv_main"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_marginTop="5dip"
                android:numColumns="3" >
            </GridView>
        </LinearLayout>
        
		<!-- 第二个页面 -->
        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="@color/peachpuff" >
            <TextView
                android:id="@+id/timetext"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentStart="true"
                android:layout_alignParentTop="true"
                android:background="@drawable/shape"
                android:textColor="@color/lightblue"
                android:gravity="center"
                android:hint="时间"
                android:textSize="30sp" >
            </TextView>

            <LinearLayout
                android:id="@+id/split1"
                android:layout_width="fill_parent"
                android:layout_height="1dp"
                android:layout_alignParentEnd="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentStart="true"
                android:layout_below="@+id/timetext"
                android:background="@color/lightyellow"
                android:orientation="horizontal" />

            <LinearLayout
                android:id="@+id/split2"
                android:layout_width="fill_parent"
                android:layout_height="1dp"
                android:layout_alignParentEnd="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentStart="true"
                android:layout_below="@+id/batterytext"
                android:background="@color/lightyellow"
                android:orientation="horizontal" />

            <ImageView
                android:id="@+id/imageview1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentStart="true"
                android:layout_below="@+id/split2"
                android:contentDescription="@string/app_name"
                android:src="@drawable/ali" />
        </RelativeLayout>
		<!-- 第三个页面 -->
        <FrameLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#0000FF" >
        </FrameLayout>
    </com.SS.UIControlSS.ScrollLayout>
使用时注意替换自己的包名

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值