详细讲解自定义ViewGroup+Scroller+VelocityTracker做出Launcher滑动

滑动在android UI界面中用的也是比较多的,比如垂直滑动,水平滑动,侧边滑动等等,而且android 也不乏像viewpager这样的滑动控件, 但是有时在做项目的时候,ViewPager

往往不能 满足我们的需求,所以我们需要按照自己的要求自定义滑动组件,比如像自定义ViewGroup 就可以帮助我们实现这个需求,下面我们直接上代码 看看自定ViewGroup

是怎样实现滑动的:


实例代码如下:

自定义ViewGroup ,  MainGroup.java

package com.example.myflaydemo;

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.ViewGroup;
import android.widget.Scroller;

public class MainGroup extends ViewGroup {

	float mLastionMotionX = 0 ; //记录上次的触摸位置
	Scroller scroller;  //页面滑动类
	VelocityTracker velocityTracker; //手势速率跟踪  ,根据触摸位置计算每像素的移动速率
	int SNAP_VELOCITX = 600; //滑动的最小速率
	int currentScreen = 0;   //第一屏幕

	public MainGroup(Context context, AttributeSet attrs) {
		super(context, attrs);
		scroller = new Scroller(context);
		// TODO Auto-generated constructor stub
	}

	
	//onLayout 在自定义控件中 作用将决定 子控件的摆放方式(如:水平,垂直)
	@Override
	protected void onLayout(boolean changed, int l, int t, int r, int b) {
		// TODO Auto-generated method stub

		int totalWidth = 0;
		int childCount = getChildCount();
		for (int i = 0; i < childCount; i++) {
			View childView = getChildAt(i);
			if(childView.getVisibility() != View.GONE){
				int childWidth = childView.getMeasuredWidth();
				int childHeight = childView.getMeasuredHeight();
				childView.layout(totalWidth, 0, totalWidth+childWidth, childHeight);
				totalWidth += childWidth;
			}
		}

	}

	//onMeasure 作用是用来测量每个子控件的宽高  最后决定自定义控件需要多少空间
	@Override
	protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
		// TODO Auto-generated method stub
		super.onMeasure(widthMeasureSpec, heightMeasureSpec);
		//获取子View的宽高
		int width = measureWidth(widthMeasureSpec);
		int height = measureHeight(heightMeasureSpec);
		//计算ziView尺寸
		measureChildren(widthMeasureSpec, heightMeasureSpec);
		//计算自定义View的尺寸
		setMeasuredDimension(width, height);
	}

	//计算子View的宽度
	public int measureWidth(int widthMeasureSpec){
		int result = 0;
		int measureMode = MeasureSpec.getMode(widthMeasureSpec);
		int width = MeasureSpec.getSize(widthMeasureSpec);
		switch (measureMode) {
		case MeasureSpec.AT_MOST:
		case MeasureSpec.EXACTLY:
			result = width;
			break;
		default:
			break;
		}
		return result;
	}

	//计算子View的高度
	public int measureHeight(int heightMeasureSpec){
		int result = 0;
		int measureMode = MeasureSpec.getMode(heightMeasureSpec);
		int height = MeasureSpec.getSize(heightMeasureSpec);
		switch (measureMode) {
		case MeasureSpec.AT_MOST:
		case MeasureSpec.EXACTLY:
			result = height;
			break;
		default:
			break;
		}
		return result;
	}


	//onTouchEvent 主要是对 手势操作的处理(如:页面的滑动方向) 
	@Override
	public boolean onTouchEvent(MotionEvent event) {
		// TODO Auto-generated method stub
		float x = event.getX();
		if(velocityTracker == null){
			velocityTracker = VelocityTracker.obtain();
		}
		//添加触摸对象MotionEvent , 用于计算触摸速率
		velocityTracker.addMovement(event);
		//捕获 手势(DOWN,UP,MOVE,CANCEL)
		int action = event.getAction();
		switch (action) {
		case MotionEvent.ACTION_DOWN:
			mLastionMotionX = x;
			break;
		case MotionEvent.ACTION_MOVE:
			int detalX = (int) (mLastionMotionX-x);
			//detalX>0 向左滑动  , detalX<0  向右滑动
			int scrollX = getScrollX();
			// 边界检查  防止页面滑动超出 显示区域
			if (detalX < 0 && scrollX + detalX < 0) { //detalX<0 向右滑动,如果不超出左屏幕显示边界 scrollX的绝对值永远是大于detalX滑动的手势距离
				detalX = 0 - scrollX; //如果进入此条件,其实只有一种情况,那就是  scrollX = 0  的情况
			} else if (detalX > 0 && scrollX + detalX > (getChildCount()-1)*getWidth()) {// detalX>0 向左滑动, 如果不超出 右屏幕显示边界,scrollX的绝对值永远是 小于或等于ViewGroup的宽度的
				detalX = (getChildCount()-1)*getWidth() - scrollX;//如果进入此条件,也只有一种情况,那就是    scrollX=ViewGroup的宽度
			}
			//在原来离远点x坐标 基础上滑动detalX距离
			scrollBy(detalX, 0); 
			mLastionMotionX = x;
			break;
		case MotionEvent.ACTION_UP:
			int velocityX = (int) velocityTracker.getXVelocity();
			if(velocityX>SNAP_VELOCITX && currentScreen>0){
				snapToScreen(currentScreen-1);
			}
			else if(velocityX<-SNAP_VELOCITX && currentScreen<(getChildCount()-1)){
				snapToScreen(currentScreen+1);
			}else{
				snapToDestination();
			}
			break;

		default:
			break;
		}

		return true;
	}

	@Override
	public void computeScroll() {
		// TODO Auto-generated method stub
		super.computeScroll();

		if(scroller.computeScrollOffset()){
			scrollTo(scroller.getCurrX(), scroller.getCurrY());
			postInvalidate();
		}

	}

	private void snapToDestination() {
		// TODO Auto-generated method stub
		//当屏幕滑到getWidth()/2 的时候,此时总共有多少屏,即滑到第几屏
		int   whichScreen  = ( getScrollX() + getWidth()/2 ) / getWidth();
		snapToScreen(whichScreen);
	}

	//加上动画  缓慢的滑动
	public void snapToScreen(int whichScreen){
		// 判断 屏幕是否已经滑动到 最后
		currentScreen = whichScreen;
		/*if( currentScreen > (getChildCount()-1)){
			currentScreen = getChildCount()-1;
		}*/
		// 需要滑动的距离    ( 开始 - 剩下 = 需要滑动的距离 ) 
		//getScrollX() 滑出屏幕的第一页 开始到 左屏幕边界的距离
		int dx = currentScreen*getWidth() - getScrollX();
		//从getScrollX()坐标   滑动dx距离  要花 Math.abs(dx) * 2 ms
		scroller.startScroll(getScrollX(), 0, dx, 0, Math.abs(dx) * 2);
		//重新绘制界面
		postInvalidate();
	}

}


ViewGroup在布局文件的使用:

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.example.myflaydemo.MainGroup
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
        

        <include layout="@layout/activity_main2" />

        <include layout="@layout/activity_main3" />
    </com.example.myflaydemo.MainGroup>

</RelativeLayout>

activity_main2.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

  <ImageView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/guide03" />    

</RelativeLayout>

activity_main3.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
 >

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/guide04" />

</RelativeLayout>


注意 guide03和guide04两张图片 你随便在网上找两张图片就可以了.


手势滑动的相关链接:点击打开链接


源码下载

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值