Android触摸屏事件派发机制详解与源码分析三(Activity篇)

TestLinearLayout–dispatchTouchEvent–action=1

TestLinearLayout–onInterceptTouchEvent–action=1

TestButton–dispatchTouchEvent–action=1

onTouch–action=1–v=com.example.yanbo.myapplication.TestButton

TestButton–onTouchEvent–action=1

onClick----v=com.example.yanbo.myapplication.TestButton

分析可以发现,当点击Button时除过派发Activity的几个新方法之外其他完全符合前面两篇分析的View与ViewGroup的触摸事件派发机制。对于Activity来说,ACTION_DOWN事件首先触发dispatchTouchEvent,然后触发onUserInteraction,再次onTouchEvent,接着的ACTION_UP事件触发dispatchTouchEvent后触发了onTouchEvent,也就是说ACTION_UP事件时不会触发onUserInteraction(待会可查看源代码分析原因)。

直接点击Button以外的其他区域:

MainActivity–dispatchTouchEvent–action=0

MainActivity–onUserInteraction

TestLinearLayout–dispatchTouchEvent–action=0

TestLinearLayout–onInterceptTouchEvent–action=0

onTouch–action=0–v=com.example.yanbo.myapplication.TestLinearLayout

TestLinearLayout–onTouchEvent–action=0

MainActivity–dispatchTouchEvent–action=1

TestLinearLayout–dispatchTouchEvent–action=1

onTouch–action=1–v=com.example.yanbo.myapplication.TestLinearLayout

TestLinearLayout–onTouchEvent–action=1

onClick----v=com.example.yanbo.myapplication.TestLinearLayout

怎么样?完全符合上面点击Button结果分析的猜想。

那接下来还是要看看Activity里关于这几个方法的源码了。

3 Android 5.1.1(API 22) Activity触摸屏事件传递源码分析


通过上面例子的打印我们可以确定分析源码的顺序,那就开始分析呗。

3-1 从Activity的dispatchTouchEvent方法说起

3-1-1 开始分析

先上源码,如下:

/**

  • Called to process touch screen events. You can override this to

  • intercept all touch screen events before they are dispatched to the

  • window. Be sure to call this implementation for touch screen events

  • that should be handled normally.

  • @param ev The touch screen event.

  • @return boolean Return true if this event was consumed.

*/

public boolean dispatchTouchEvent(MotionEvent ev) {

if (ev.getAction() == MotionEvent.ACTION_DOWN) {

onUserInteraction();

}

if (getWindow().superDispatchTouchEvent(ev)) {

return true;

}

return onTouchEvent(ev);

}

哎呦!这次看着代码好少的样子,不过别高兴,浓缩才是精华,这里代码虽少,涉及的问题点还是很多的,那么咱们就来一点一点分析吧。

12到14行看见了吧?上面例子咱们看见只有ACTION_DOWN事件派发时调运了onUserInteraction方法,当时还在疑惑呢,这下明白了吧,不多解释,咱们直接跳进去可以看见是一个空方法,具体下面会分析。

好了,自己分析15到17行,看着简单吧,我勒个去,我怎么有点懵,这是哪的方法?咱们分析分析吧。

首先分析Activity的attach方法可以发现getWindow()返回的就是PhoneWindow对象(PhoneWindow为抽象Window的实现子类),那就简单了,也就相当于PhoneWindow类的方法,而PhoneWindow类实现于Window抽象类,所以先看下Window类中抽象方法的定义,如下:

/**

  • Used by custom windows, such as Dialog, to pass the touch screen event

  • further down the view hierarchy. Application developers should

  • not need to implement or call this.

*/

public abstract boolean superDispatchTouchEvent(MotionEvent event);

看见注释没有?用户不需要重写实现的方法,实质也不能,在Activity中没有提供重写的机会,因为Window是以组合模式与Activity建立关系的。好了,看完了抽象的Window方法,那就去PhoneWindow里看下Window抽象方法的实现吧,如下:

@Override

public boolean superDispatchTouchEvent(MotionEvent event) {

return mDecor.superDispatchTouchEvent(event);

}

又是看着好简单的样子哦,实际又是一堆问题,继续分析。你会发现在PhoneWindow的superDispatchTouchEvent方法里又直接返回了另一个mDecor对象的superDispatchTouchEvent方法,mDecor是啥?继续分析吧。

在PhoneWindow类里发现,mDecor是DecorView类的实例,同时DecorView是PhoneWindow的内部类。最惊人的发现是DecorView extends FrameLayout implements RootViewSurfaceTaker,看见没有?它是一个真正Activity的root view,它继承了FrameLayout。怎么验证他一定是root view呢?很简单,不知道大家是不是熟悉Android App开发技巧中关于UI布局优化使用的SDK工具Hierarchy Viewer。咱们通过他来看下上面刚刚展示的那个例子的Hierarchy Viewer你就明白了,如下我在Ubuntu上截图的Hierarchy Viewer分析结果:

这里写图片描述

看见没有,我们上面例子中Activity中setContentView时放入的xml layout是一个LinearLayout,其中包含一个Button,上图展示了我们放置的LinearLayout被放置在一个id为content的FrameLayout的布局中,这也就是为啥Activity的setContentView方法叫set content view了,就是把我们的xml放入了这个id为content的FrameLayout中。

赶快回过头,你是不是发现上面PhoneWindow的superDispatchTouchEvent直接返回了DecorView的superDispatchTouchEvent,而DecorView又是FrameLayout的子类,FrameLayout又是ViewGroup的子类。机智的你想到了啥木有?

没想到就继续看下DecorView类的superDispatchTouchEvent方法吧,如下:

public boolean superDispatchTouchEvent(MotionEvent event) {

return super.dispatchTouchEvent(event);

}

这回你一定恍然大悟了吧,不然就得脑补前面两篇博客的内容了。。。

搞半天Activity的dispatchTouchEvent方法的15行if (getWindow().superDispatchTouchEvent(ev))本质执行的是一个ViewGroup的dispatchTouchEvent方法(这个ViewGroup是Activity特有的root view,也就是id为content的FrameLayout布局),接下来就不用多说了吧,完全是前面两篇分析的执行过程。

接下来依据派发事件返回值决定是否触发Activity的onTouchEvent方法。

3-1-2 小总结一下

在Activity的触摸屏事件派发中:

  1. 首先会触发Activity的dispatchTouchEvent方法。

  2. dispatchTouchEvent方法中如果是ACTION_DOWN的情况下会接着触发onUserInteraction方法。

  3. 接着在dispatchTouchEvent方法中会通过Activity的root View(id为content的FrameLayout),实质是ViewGroup,通过super.dispatchTouchEvent把touchevent派发给各个activity的子view,也就是我们再Activity.onCreat方法中setContentView时设置的view。

  4. 若Activity下面的子view拦截了touchevent事件(返回true)则Activity.onTouchEvent方法就不会执行。

3-2 继续Activity的dispatchTouchEvent方法中调运的onUserInteraction方法

如下源码:

/**

  • Called whenever a key, touch, or trackball event is dispatched to the

  • activity. Implement this method if you wish to know that the user has

  • interacted with the device in some way while your activity is running.

  • This callback and {@link #onUserLeaveHint} are intended to help

  • activities manage status bar notifications intelligently; specifically,

  • for helping activities determine the proper time to cancel a notfication.

  • All calls to your activity's {@link #onUserLeaveHint} callback will

  • be accompanied by calls to {@link #onUserInteraction}. This

  • ensures that your activity will be told of relevant user activity such

  • as pulling down the notification pane and touching an item there.

  • Note that this callback will be invoked for the touch down action

  • that begins a touch gesture, but may not be invoked for the touch-moved

  • and touch-up actions that follow.

  • @see #onUserLeaveHint()

*/

public void onUserInteraction() {

}

搞了半天就像上面说的,这是一个空方法,那它的作用是啥呢?

此方法是activity的方法,当此activity在栈顶时,触屏点击按home,back,menu键等都会触发此方法。下拉statubar、旋转屏幕、锁屏不会触发此方法。所以它会用在屏保应用上,因为当你触屏机器 就会立马触发一个事件,而这个事件又不太明确是什么,正好屏保满足此需求;或者对于一个Activity,控制多长时间没有用户点响应的时候,自己消失等。

这个方法也分析完了,那就剩下onTouchEvent方法了,如下继续分析。

3-3 继续Activity的dispatchTouchEvent方法中调运的onTouchEvent方法

如下源码:

/**

  • Called when a touch screen event was not handled by any of the views

  • under it. This is most useful to process touch events that happen

  • outside of your window bounds, where there is no view to receive it.

  • @param event The touch screen event being processed.

  • @return Return true if you have consumed the event, false if you haven’t.

  • The default implementation always returns false.

*/

public boolean onTouchEvent(MotionEvent event) {

if (mWindow.shouldCloseOnTouch(this, event)) {

finish();

return true;

}

return false;

}

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级安卓工程师,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Android移动开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img
img

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Android)
img

《960全网最全Android开发笔记》

《379页Android开发面试宝典》

《507页Android开发相关源码解析》

RkWEZO7t-1711376086919)]

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Android)
[外链图片转存中…(img-dkHZ4Kgo-1711376086919)]

《960全网最全Android开发笔记》

[外链图片转存中…(img-697IHKNc-1711376086920)]

《379页Android开发面试宝典》

[外链图片转存中…(img-VRAdFL1C-1711376086920)]

《507页Android开发相关源码解析》

[外链图片转存中…(img-qFeLUyXz-1711376086920)]

因为文件太多,全部展示会影响篇幅,暂时就先列举这些部分截图,大家可以**点击这里**自行领取。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值