Android_ListView_onTouchEvent源码分析

2024-02-06 22:08

本文主要是介绍Android_ListView_onTouchEvent源码分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Android ListView  onTouchEvent源码简单分析,在看代码之前先来看下代码结构图


1.onTouchEvent源码

    @Overridepublic boolean onTouchEvent(MotionEvent ev) {if (!isEnabled()) {// A disabled view that is clickable still consumes the touch// events, it just doesn't respond to them.return isClickable() || isLongClickable();}// AbsListView 绘制与控制手指快速滚动的辅助类if (mFastScroller != null) {boolean intercepted = mFastScroller.onTouchEvent(ev);if (intercepted) {return true;}}final int action = ev.getAction();View v;int deltaY;// 获取触摸滚动时的速率if (mVelocityTracker == null) {mVelocityTracker = VelocityTracker.obtain();}mVelocityTracker.addMovement(ev);// ListView触屏事件主要从ACTION操作划分switch (action & MotionEvent.ACTION_MASK) {case MotionEvent.ACTION_DOWN: {......break;}case MotionEvent.ACTION_MOVE: {......break;}case MotionEvent.ACTION_UP: {switch (mTouchMode) {case TOUCH_MODE_DOWN:case TOUCH_MODE_TAP:case TOUCH_MODE_DONE_WAITING:......mTouchMode = TOUCH_MODE_REST;break;case TOUCH_MODE_SCROLL:......break;}setPressed(false);// Need to redraw since we probably aren't drawing the selector anymoreinvalidate();final Handler handler = getHandler();if (handler != null) {handler.removeCallbacks(mPendingCheckForLongPress);}if (mVelocityTracker != null) {mVelocityTracker.recycle();mVelocityTracker = null;}mActivePointerId = INVALID_POINTER;if (PROFILE_SCROLLING) {if (mScrollProfilingStarted) {Debug.stopMethodTracing();mScrollProfilingStarted = false;}}break;}case MotionEvent.ACTION_CANCEL: {mTouchMode = TOUCH_MODE_REST;......break;}case MotionEvent.ACTION_POINTER_UP: {......break;}}return true;}

2.ACTION_DOWN,主要是CheckForTap

        case MotionEvent.ACTION_DOWN: {mActivePointerId = ev.getPointerId(0);final int x = (int) ev.getX();final int y = (int) ev.getY();// 手指按下时x,y坐标,获取当前选中的itemint motionPosition = pointToPosition(x, y);// 如果ListView 数据未发生变化if (!mDataChanged) {if ((mTouchMode != TOUCH_MODE_FLING) && (motionPosition >= 0)&& (getAdapter().isEnabled(motionPosition))) {// User clicked on an actual view (and was not stopping a fling). It might be a// click or a scroll. Assume it is a click until proven otherwisemTouchMode = TOUCH_MODE_DOWN;// TAP机制,主要是用于去除手指点击抖动// 使Item处于按下状态if (mPendingCheckForTap == null) {mPendingCheckForTap = new CheckForTap();}// 添加到消息队列并延时ViewConfiguration.getTapTimeout()执行此runnablepostDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());} else {if (ev.getEdgeFlags() != 0 && motionPosition < 0) {// If we couldn't find a view to click on, but the down event was touching// the edge, we will bail out and try again. This allows the edge correcting// code in ViewRoot to try to find a nearby view to selectreturn false;}// 之前处于Fling模式if (mTouchMode == TOUCH_MODE_FLING) {// Stopped a fling. It is a scroll.createScrollingCache();// 更改为scrollmTouchMode = TOUCH_MODE_SCROLL;mMotionCorrection = 0;motionPosition = findMotionRow(y);reportScrollStateChange(OnScrollListener.SCROLL_STATE_TOUCH_SCROLL);}}}// 对于ACTION_MOVE,ACTION_UP会使用的触屏位置信息进行记录if (motionPosition >= 0) {// Remember where the motion event startedv = getChildAt(motionPosition - mFirstPosition);mMotionViewOriginalTop = v.getTop();}mMotionX = x;mMotionY = y;mMotionPosition = motionPosition;mLastY = Integer.MIN_VALUE;break;}

3.ACTION_MOVE,主要是startScrollIfNeeded和trackMotionScroll

        case MotionEvent.ACTION_MOVE: {final int pointerIndex = ev.findPointerIndex(mActivePointerId);final int y = (int) ev.getY(pointerIndex);// 获取y轴当前与前一次的偏移值deltaY = y - mMotionY;switch (mTouchMode) {case TOUCH_MODE_DOWN:case TOUCH_MODE_TAP:case TOUCH_MODE_DONE_WAITING:// 必须移动一段距离后才会执行滚动startScrollIfNeeded(deltaY);break;case TOUCH_MODE_SCROLL:if (PROFILE_SCROLLING) {if (!mScrollProfilingStarted) {Debug.startMethodTracing("AbsListViewScroll");mScrollProfilingStarted = true;}}// 手指移动if (y != mLastY) {deltaY -= mMotionCorrection;int incrementalDeltaY = mLastY != Integer.MIN_VALUE ? y - mLastY : deltaY;// No need to do all this work if we're not going to move anywayboolean atEdge = false;if (incrementalDeltaY != 0) {// 滚动的重要方法,滚动的具体处理就是这里atEdge = trackMotionScroll(deltaY, incrementalDeltaY);}// ListView滚动到边界后不不能再进行移动if (atEdge && getChildCount() > 0) {// Treat this like we're starting a new scroll from the current// position. This will let the user start scrolling back into// content immediately rather than needing to scroll back to the// point where they hit the limit first.int motionPosition = findMotionRow(y);if (motionPosition >= 0) {final View motionView = getChildAt(motionPosition - mFirstPosition);mMotionViewOriginalTop = motionView.getTop();}mMotionY = y;mMotionPosition = motionPosition;invalidate();}// 记录当前Y值,用于下次计算偏移量mLastY = y;}break;}break;}

4.ACTION_UP,主要是PerformClick, mPendingCheckForLongPress, mFlingRunnable

        case MotionEvent.ACTION_UP: {switch (mTouchMode) {case TOUCH_MODE_DOWN:case TOUCH_MODE_TAP:case TOUCH_MODE_DONE_WAITING:final int motionPosition = mMotionPosition;final View child = getChildAt(motionPosition - mFirstPosition);if (child != null && !child.hasFocusable()) {// 清理Item按下状态if (mTouchMode != TOUCH_MODE_DOWN) {child.setPressed(false);}// 执行Item Clickif (mPerformClick == null) {mPerformClick = new PerformClick();}final AbsListView.PerformClick performClick = mPerformClick;performClick.mChild = child;performClick.mClickMotionPosition = motionPosition;performClick.rememberWindowAttachCount();mResurrectToPosition = motionPosition;if (mTouchMode == TOUCH_MODE_DOWN || mTouchMode == TOUCH_MODE_TAP) {final Handler handler = getHandler();if (handler != null) {// 清理tap或者long press长按handler.removeCallbacks(mTouchMode == TOUCH_MODE_DOWN ?mPendingCheckForTap : mPendingCheckForLongPress);}mLayoutMode = LAYOUT_NORMAL;if (!mDataChanged && mAdapter.isEnabled(motionPosition)) {mTouchMode = TOUCH_MODE_TAP;setSelectedPositionInt(mMotionPosition);layoutChildren();child.setPressed(true);positionSelector(child);setPressed(true);if (mSelector != null) {Drawable d = mSelector.getCurrent();if (d != null && d instanceof TransitionDrawable) {((TransitionDrawable) d).resetTransition();}}postDelayed(new Runnable() {public void run() {child.setPressed(false);setPressed(false);if (!mDataChanged) {post(performClick);}mTouchMode = TOUCH_MODE_REST;}}, ViewConfiguration.getPressedStateDuration());} else {mTouchMode = TOUCH_MODE_REST;}return true;} else if (!mDataChanged && mAdapter.isEnabled(motionPosition)) {post(performClick);}}mTouchMode = TOUCH_MODE_REST;break;case TOUCH_MODE_SCROLL:final int childCount = getChildCount();if (childCount > 0) {if (mFirstPosition == 0 && getChildAt(0).getTop() >= mListPadding.top &&mFirstPosition + childCount < mItemCount &&getChildAt(childCount - 1).getBottom() <=getHeight() - mListPadding.bottom) {mTouchMode = TOUCH_MODE_REST;reportScrollStateChange(OnScrollListener.SCROLL_STATE_IDLE);} else {// 是否执行ListView Scroll Flingfinal VelocityTracker velocityTracker = mVelocityTracker;velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);// 获取当前触屏滚动速率final int initialVelocity = (int) velocityTracker.getYVelocity(mActivePointerId);if (Math.abs(initialVelocity) > mMinimumVelocity) {if (mFlingRunnable == null) {mFlingRunnable = new FlingRunnable();}reportScrollStateChange(OnScrollListener.SCROLL_STATE_FLING);// 执行ListView 快速滚动(Scroll Fling)mFlingRunnable.start(-initialVelocity);} else {mTouchMode = TOUCH_MODE_REST;reportScrollStateChange(OnScrollListener.SCROLL_STATE_IDLE);}}} else {mTouchMode = TOUCH_MODE_REST;reportScrollStateChange(OnScrollListener.SCROLL_STATE_IDLE);}break;}setPressed(false);// Need to redraw since we probably aren't drawing the selector anymoreinvalidate();final Handler handler = getHandler();if (handler != null) {handler.removeCallbacks(mPendingCheckForLongPress);}if (mVelocityTracker != null) {mVelocityTracker.recycle();mVelocityTracker = null;}mActivePointerId = INVALID_POINTER;if (PROFILE_SCROLLING) {if (mScrollProfilingStarted) {Debug.stopMethodTracing();mScrollProfilingStarted = false;}}break;}

这篇关于Android_ListView_onTouchEvent源码分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/685690

相关文章

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

找不到Anaconda prompt终端的原因分析及解决方案

《找不到Anacondaprompt终端的原因分析及解决方案》因为anaconda还没有初始化,在安装anaconda的过程中,有一行是否要添加anaconda到菜单目录中,由于没有勾选,导致没有菜... 目录问题原因问http://www.chinasem.cn题解决安装了 Anaconda 却找不到 An

Spring定时任务只执行一次的原因分析与解决方案

《Spring定时任务只执行一次的原因分析与解决方案》在使用Spring的@Scheduled定时任务时,你是否遇到过任务只执行一次,后续不再触发的情况?这种情况可能由多种原因导致,如未启用调度、线程... 目录1. 问题背景2. Spring定时任务的基本用法3. 为什么定时任务只执行一次?3.1 未启用

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

Spring、Spring Boot、Spring Cloud 的区别与联系分析

《Spring、SpringBoot、SpringCloud的区别与联系分析》Spring、SpringBoot和SpringCloud是Java开发中常用的框架,分别针对企业级应用开发、快速开... 目录1. Spring 框架2. Spring Boot3. Spring Cloud总结1. Sprin

Spring 中 BeanFactoryPostProcessor 的作用和示例源码分析

《Spring中BeanFactoryPostProcessor的作用和示例源码分析》Spring的BeanFactoryPostProcessor是容器初始化的扩展接口,允许在Bean实例化前... 目录一、概览1. 核心定位2. 核心功能详解3. 关键特性二、Spring 内置的 BeanFactory