手势监听类GestureDetector Listener源码解析

手势监听类GestureDetector

  • 前言
  • 一、GestureDetector是什么?
  • 二、Listener源码解析
    • 1.OnGestureListener
    • 2.OnDoubleTapListener
    • 3.OnContextClickListener
    • 4.SimpleOnGestureListener
  • 总结


在这里插入图片描述

前言

在写自定义view的时候,涉及到了手势监听这块的知识,补充下知识营养


一、GestureDetector是什么?

GestureDetector是一个手势监听类,用于监听和处理用户的手势操作。它提供了一些回调方法,可以在用户执行手势时被调用,从而实现手势识别和响应。

GestureDetector类的主要功能包括:

  1. 检测手势事件:GestureDetector可以监听和处理手势事件,如轻触、滑动、缩放等。当用户执行手势时,GestureDetector会触发相应的回调方法。
  2. 识别简单手势:GestureDetector可以识别一些简单的手势,如单击、双击、长按等。开发者可以通过GestureDetector的回调方法来处理这些手势事件。
  3. 自定义手势识别:GestureDetector还提供了自定义手势识别的功能。开发者可以通过实现GestureDetector的回调方法来自定义手势的识别逻辑,从而处理更复杂的手势操作。

使用GestureDetector类,开发者可以方便地实现手势识别和响应,增强应用程序的用户体验。GestureDetector的回调方法通常包括onTouchEvent()、onDown()、onSingleTapUp()、onDoubleTap()等,开发者可以根据需要实现这些方法来处理不同的手势事件。

二、Listener源码解析

1.OnGestureListener

在这里插入图片描述

代码如下:

    public interface OnGestureListener {/*** Notified when a tap occurs with the down {@link MotionEvent}* that triggered it. This will be triggered immediately for* every down event. All other events should be preceded by this.** @param e The down motion event.*/boolean onDown(MotionEvent e);/*** The user has performed a down {@link MotionEvent} and not performed* a move or up yet. This event is commonly used to provide visual* feedback to the user to let them know that their action has been* recognized i.e. highlight an element.** @param e The down motion event*/void onShowPress(MotionEvent e);/*** Notified when a tap occurs with the up {@link MotionEvent}* that triggered it.** @param e The up motion event that completed the first tap* @return true if the event is consumed, else false*/boolean onSingleTapUp(MotionEvent e);/*** Notified when a scroll occurs with the initial on down {@link MotionEvent} and the* current move {@link MotionEvent}. The distance in x and y is also supplied for* convenience.** @param e1 The first down motion event that started the scrolling.* @param e2 The move motion event that triggered the current onScroll.* @param distanceX The distance along the X axis that has been scrolled since the last*              call to onScroll. This is NOT the distance between {@code e1}*              and {@code e2}.* @param distanceY The distance along the Y axis that has been scrolled since the last*              call to onScroll. This is NOT the distance between {@code e1}*              and {@code e2}.* @return true if the event is consumed, else false*/boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY);/*** Notified when a long press occurs with the initial on down {@link MotionEvent}* that trigged it.** @param e The initial on down motion event that started the longpress.*/void onLongPress(MotionEvent e);/*** Notified of a fling event when it occurs with the initial on down {@link MotionEvent}* and the matching up {@link MotionEvent}. The calculated velocity is supplied along* the x and y axis in pixels per second.** @param e1 The first down motion event that started the fling.* @param e2 The move motion event that triggered the current onFling.* @param velocityX The velocity of this fling measured in pixels per second*              along the x axis.* @param velocityY The velocity of this fling measured in pixels per second*              along the y axis.* @return true if the event is consumed, else false*/boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);}

每个方法的解释:

  1. boolean onDown(MotionEvent e);

    • 当一个点击事件发生时,该方法会被立即触发。所有其他的事件都应该以此事件为前提。
    • 参数e是触发该事件的MotionEvent对象。
    • 返回一个布尔值,表示事件是否被消费。
  2. void onShowPress(MotionEvent e);

    • 用户执行了一个按下的MotionEvent,但还没有执行移动或抬起操作。这个事件通常用于向用户提供视觉反馈,让他们知道他们的操作已经被识别,例如高亮显示一个元素。
    • 参数e是触发的MotionEvent对象。
  3. boolean onSingleTapUp(MotionEvent e);

    • 当一个轻触事件发生时,该方法会被触发。
    • 参数e是触发该事件的MotionEvent对象。
    • 返回一个布尔值,表示事件是否被消费。
  4. boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY);

    • 当滚动事件发生时,该方法会被触发。滚动事件通常由用户按住并移动屏幕引起。
    • 参数e1是开始滚动的第一个按下的MotionEvent对象。
    • 参数e2是触发当前onScroll的移动MotionEvent对象。
    • 参数distanceX是自上次调用onScroll以来沿X轴滚动的距离。这不是e1e2之间的距离。
    • 参数distanceY是自上次调用onScroll以来沿Y轴滚动的距离。这也不是e1e2之间的距离。
    • 返回一个布尔值,表示事件是否被消费。
      这两个方法也是与手势相关的事件处理方法,我会为你解释它们:
  5. void onLongPress(MotionEvent e);

    • 当用户长时间按住屏幕而不移动或抬起时,该方法会被触发。这通常用于实现长按手势的功能,例如显示上下文菜单。
    • 参数e是触发该事件的MotionEvent对象。
  6. boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);

    • 当用户快速滑动屏幕(fling手势)时,该方法会被触发。这通常用于实现快速滚动或滑动操作。
    • 参数e1是开始fling的按下的MotionEvent对象。
    • 参数e2是触发当前onFling的移动MotionEvent对象。
    • 参数velocityX是fling在X轴上的速度,以像素/秒为单位。
    • 参数velocityY是fling在Y轴上的速度,以像素/秒为单位。
    • 返回一个布尔值,表示事件是否被消费。

这些方法进一步完善了OnGestureListener接口,使其能够处理更多的手势事件。实现这个接口的类可以提供这些方法的具体实现,以定义如何响应这些手势事件。这样,当用户在应用中执行相应的手势时,应用就能够根据这些方法的实现来做出相应的反应。

2.OnDoubleTapListener

在这里插入图片描述

代码如下:

    public interface OnDoubleTapListener {/*** Notified when a single-tap occurs.* <p>* Unlike {@link OnGestureListener#onSingleTapUp(MotionEvent)}, this* will only be called after the detector is confident that the user's* first tap is not followed by a second tap leading to a double-tap* gesture.** @param e The down motion event of the single-tap.* @return true if the event is consumed, else false*/boolean onSingleTapConfirmed(MotionEvent e);/*** Notified when a double-tap occurs. Triggered on the down event of second tap.** @param e The down motion event of the first tap of the double-tap.* @return true if the event is consumed, else false*/boolean onDoubleTap(MotionEvent e);/*** Notified when an event within a double-tap gesture occurs, including* the down, move, and up events.** @param e The motion event that occurred during the double-tap gesture.* @return true if the event is consumed, else false*/boolean onDoubleTapEvent(MotionEvent e);}

每个方法的解释:

  1. boolean onSingleTapConfirmed(MotionEvent e);

    • 当用户单次点击(single-tap)屏幕时,该方法会被触发。与OnGestureListener#onSingleTapUp(MotionEvent)不同,此方法只会在检测器确定用户第一次点击没有跟随第二次点击形成双击手势时才会被调用。
    • 参数e是用户单次点击的MotionEvent对象。
    • 返回一个布尔值,表示事件是否被消费。
  2. boolean onDoubleTap(MotionEvent e);

    • 当用户双击屏幕时,该方法会被触发。该方法在第二次点击的MotionEvent事件的“down”阶段触发。
    • 参数e是用户第一次点击的MotionEvent对象。
    • 返回一个布尔值,表示事件是否被消费。
  3. boolean onDoubleTapEvent(MotionEvent e);

    • 当在双击手势中发生事件时,该方法会被触发,包括“down”(按下)、“move”(移动)和“up”(抬起)事件。
    • 参数e是在双击手势期间发生的MotionEvent对象。
    • 返回一个布尔值,表示事件是否被消费。

这个接口允许实现者(通常是一个类)定义如何处理这些特定的双击事件。当这些事件发生时,相应的方法会被调用,从而实现对手势的监听和处理。这样,当用户在应用中执行双击手势时,应用就能够根据这些方法的实现来做出相应的反应。

3.OnContextClickListener

在这里插入图片描述
代码如下:

    public interface OnContextClickListener {/*** Notified when a context click occurs.** @param e The motion event that occurred during the context click.* @return true if the event is consumed, else false*/boolean onContextClick(MotionEvent e);}

onContextClick方法接受一个MotionEvent对象作为参数,该对象包含有关点击事件的信息,例如点击的位置、时间戳等。返回值是一个布尔值,如果该方法处理了点击事件,则返回true,否则返回false

这个接口可以用于实现自定义的上下文点击行为,例如在用户点击一个控件时显示一个上下文菜单。通过实现这个接口并重写onContextClick方法,你可以定义自己的上下文点击处理逻辑。

4.SimpleOnGestureListener

在这里插入图片描述

代码如下:

   public static class SimpleOnGestureListener implements OnGestureListener, OnDoubleTapListener,OnContextClickListener {public boolean onSingleTapUp(MotionEvent e) {return false;}public void onLongPress(MotionEvent e) {}public boolean onScroll(MotionEvent e1, MotionEvent e2,float distanceX, float distanceY) {return false;}public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,float velocityY) {return false;}public void onShowPress(MotionEvent e) {}public boolean onDown(MotionEvent e) {return false;}public boolean onDoubleTap(MotionEvent e) {return false;}public boolean onDoubleTapEvent(MotionEvent e) {return false;}public boolean onSingleTapConfirmed(MotionEvent e) {return false;}public boolean onContextClick(MotionEvent e) {return false;}}

这段代码是一个简单的Android手势监听器的实现。它定义了一个名为SimpleOnGestureListener的内部类,该类实现了OnGestureListenerOnDoubleTapListenerOnContextClickListener接口。以下是每个方法的功能和解释:

  1. onSingleTapUp(MotionEvent e): 当用户点击屏幕并且手指松开时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,这个事件未被处理。
  2. onLongPress(MotionEvent e): 当用户长按屏幕时,该方法会被调用。在这个方法中,没有实现任何功能,所以默认情况下,长按事件未被处理。
  3. onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY): 当用户在屏幕上滚动时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,滚动事件未被处理。
  4. onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY): 当用户在屏幕上快速滑动时(例如翻页),该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,快速滑动事件未被处理。
  5. onShowPress(MotionEvent e): 当用户按下屏幕时,该方法会被调用。在这个方法中,没有实现任何功能,所以默认情况下,按下事件未被处理。
  6. onDown(MotionEvent e): 当用户在屏幕上按下并开始触摸事件时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,按下事件未被处理。
  7. onDoubleTap(MotionEvent e): 当用户双击屏幕时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,双击事件未被处理。
  8. onDoubleTapEvent(MotionEvent e): 当在双击手势中发生其他事件时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,双击事件未被处理。
  9. onSingleTapConfirmed(MotionEvent e): 当用户第一次点击屏幕并且该点击不导致双击或长按时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,这个事件未被处理。
  10. onContextClick(MotionEvent e): 当用户在屏幕上点击并且不进行任何其他手势(例如长按或双击)时,该方法会被调用。它返回一个布尔值,如果返回true,则表示事件已经被处理;如果返回false,则表示事件未被处理。在这个方法中,它只是简单地返回了false,所以默认情况下,这个事件未被处理。

以上就是这段代码的解释和每个方法的说明。如果你想根据实际需求修改这些方法的实现,只需要在这些方法内部添加相应的代码即可。


总结

本文介绍了Android手势监听类GestureDetector,包括其基本功能和回调方法OnGestureListener、OnDoubleTapListener、OnContextClickListener及其实现类SimpleOnGestureListener。通过实现这些回调方法,开发者可以监听和处理用户的手势操作,从而实现手势识别和响应。同时,本文也介绍了这些回调方法的具体功能和使用,帮助开发者更好地理解GestureDetector的使用方法。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/174343.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

FLV 文件格式分析

前言 flv 是 flash video 的缩写&#xff0c;是 Adobe Flash payler 支持的一种流媒体播放格式。flv 是一种层级格式&#xff0c;除了一个 flv header 外&#xff0c;剩下全是由 一个个 tag 组成。tag 是由 tag 头和 tag 数据组成。tag 类型分为音频、视频、脚本&#xff0c;一…

交换机的VRRP主备配置例子

拓朴如下&#xff1a; 主要配置如下&#xff1a; [S1] vlan batch 10 20 # interface Vlanif10ip address 10.1.1.1 255.255.255.0vrrp vrid 1 virtual-ip 10.1.1.254vrrp vrid 1 priority 200vrrp vrid 1 preempt-mode timer delay 20 # interface Vlanif20ip address 13.1.1…

IDEA的安装与删除插件

不小心安装了一个英文转中文的插件&#xff0c;看不习惯&#xff0c;决定重新变回英文 先点击这个settings的安装 然后就看到这个下面这张图了 如果是安装就点install&#xff0c;不用了就和我一样把这个勾给去掉

MUI框架从新手入门【webapp开发教程】

文章目录 MUI -最接近原生APP体验的高性能前端框架APP开发3.25 开发记录miu框架介绍头部/搜索框&#xff1a;身体>轮播图轮播图设置数据自动跳转&#xff1a;九宫格图片九宫格图文列表底部选项卡按钮选择器手机模拟器 心得与总结&#xff1a;MUI框架在移动应用开发中的应用M…

openGauss学习笔记-133 openGauss 数据库运维-例行维护-日维护检查项

文章目录 openGauss学习笔记-133 openGauss 数据库运维-例行维护-日维护检查项133.1 检查openGauss状态133.2 检查锁信息133.3 统计事件数据133.4 对象检查133.5 SQL报告检查133.6 备份133.7 基本信息检查 openGauss学习笔记-133 openGauss 数据库运维-例行维护-日维护检查项 …

数据结构——利用堆进行对数组的排序

今天文章的内容是关于我们如何利用堆的特性对我们的数组进行排序&#xff0c;还有就是我们的TopK的问题&#xff0c;这次我们放在的是文件种&#xff0c;我们放入一亿个数字&#xff0c;然后我们取出一亿个数字中最大的十个数&#xff0c;利用上章堆的问题进行解决。 首先就是我…

【SQL Server2019SSMS】安装 | 卸载手册

目录 &#x1f4cb;前言 ⛳️【SQL Serverssms】安装 1. SQL Server自定义安装 2. SSMS安装 ⛳️【SQL Server】卸载 &#x1f4cb;前言 &#x1f308;个人主页&#xff1a;Sarapines Programmer &#x1f525; 系列专栏&#xff1a;本期文章收录在《宝藏工具使用手册》&am…

区块链介绍

区块链提供了比特币的公共账本&#xff0c;这是一个有序的、带有时间戳的交易记录。这个系统用于防止重复消费和修改之前的交易记录。 Introduction 比特币网络中的每个完全节点都独立存储只包含该节点验证的块的区块链。当多个节点在他们的区块链中都有相同的块时&#xff0…

00TDI 这件红色大衣也太适合过年穿了

分享女儿的时尚穿搭—红色大衣 这款大衣非常厚实 摸起来很软糯的触感 复合了660-700g绵羊绒 厚实度堪比一件厚实的羽绒服 门禁处做了立体的爱心装饰 精致又可爱&#xff01;&#xff01;&#xff01;

java--单继承、Object

java是单继承的&#xff0c;java中的类不支持多继承&#xff0c;但是支持多层继承。 反证法&#xff1a; 如果一个类同时继承两个类&#xff0c;然后两个类中都有同样的一个方法&#xff0c;哪当我创建这个类里的方法&#xff0c;是调用哪父类的方法 所以java中的类不支持多继…

【Linux】:信号的产生

信号 一.前台进程和后台进程1.前台进程2。后台进程3.总结 二.自定义信号动作接口三.信号的产生1.键盘组合键2.kill信号进程pid3.系统调用1.kill函数2.raise函数3.abort函数 四.异常五.软件条件六.通过终端按键产生信号 一.前台进程和后台进程 1.前台进程 一个简单的代码演示 …

【云备份】数据管理模块

文章目录 1. 数据管理模块要管理什么数据&#xff1f;2. 数据管理模块如何管理数据&#xff1f;3. 数据管理模块的具体实现BackupInfo 数据信息类NewBackupInfo —— 获取各项属性信息 DataManager 数据管理类构造函数析构函数insert —— 新增update —— 修改GetOneByURL——…

数据结构之时间复杂度与空间复杂度

1.算法效率 1.1 如何衡量一个算法的好坏&#xff1f; 比方说我们非常熟悉的斐波拉契数列&#xff1a; long long Fib(int N) {if(N < 3)return 1;return Fib(N-1) Fib(N-2); } 递归实现方式非常简洁&#xff0c;但一定好吗&#xff1f;如何衡量其好与坏&#xff1f; 1…

JVM——垃圾回收器(Serial,SerialOld,ParNew,CMS,Parallel Scavenge,Parallel Old)

目录 1.垃圾回收器的组合关系1.年轻代-Serial垃圾回收器2.老年代-SerialOld垃圾回收器3.年轻代-ParNew垃圾回收器4.老年代- CMS(Concurrent Mark Sweep)垃圾回收器CMS执行步骤&#xff1a;CMS垃圾回收器存在的问题缺点&#xff1a;CMS垃圾回收器存在的问题 – 线程资源争抢问题…

机器学习——支持向量机(SVM)

1.线性支持向量机 1.1数学模型 机器学习最终都是求解目标函数的最优问题&#xff1b; 一般都是讲问题转化为最小值来求解。 数学模型获得是一个不等式约束的最小化问题&#xff0c;求解时可通过构建拉格朗日函数求解。 1.2 拉格朗日函数及对偶问题求解 1.3 SMO算法求解 SMO算…

鸿蒙应用开发-初见:ArkTS

作者&#xff1a;HarderCoder ArkTS ArkTS围绕应用开发在 TypeScript &#xff08;简称TS&#xff09;生态基础上做了进一步扩展&#xff0c;继承了TS的所有特性&#xff0c;是TS的超集 ArkTS在TS的基础上扩展了struct和很多的装饰器以达到描述UI和状态管理的目的 基本语法 …

Redis Lua沙盒绕过 命令执行(CVE-2022-0543)漏洞复现

Redis Lua沙盒绕过 命令执行(CVE-2022-0543)漏洞复现 Redis如果在没有开启认证的情况下&#xff0c;可以导致任意用户在可以访问目标服务器的情况下未授权访问Redis以及读取Redis的数据。–那么这也就是redis未授权访问了 Redis的默认端口是6379 可以用空间测绘搜索&#xff…

【青蛙跳台阶问题 —— (三种算法)】

青蛙跳台阶问题 —— (三种算法&#xff09; 一.题目介绍1.1.题目1.2.图示 二.解题思路三.题解及其相关算法3.1.递归分治法3.2.动态规划算法&#xff08;Dynamic Programming&#xff09;3.3.斐波那契数列法 四.注意细节 一.题目介绍 1.1.题目 一只青蛙一次可以跳上1级台阶&am…

GWAS 分析模型 | FaST-LMM

GWAS 分析模型 | FaST-LMM FaST-LMM (Factored Spectrally Transformed Linear Mixed Models) 是一个用于进行全基因组关联分析&#xff08;GWAS&#xff09;的模型。与标准混合线性模型相比&#xff0c;FaST-LMM 通过对遗传相似性矩阵进行单次谱分解来减少计算资源消耗并提升运…

超全超实用行业解决方案合集,覆盖十大行业数据应用需求

现代企业面对复杂的业务需求&#xff0c;对数据分析的需求日益增加。 从实时销售到市场趋势&#xff0c;从客户行为到产品优化&#xff0c;每个环节都依赖于数据支持。然而&#xff0c;传统的数据分析平台常分散在不同系统和团队中&#xff0c;形成数据孤岛&#xff0c;降低了…