Android触摸事件传递图解
本博文讲解流程
touchevent相关事件简介
流程图分解讲解
总结与归纳
一.touchevent相关事件简介
android touchevent相关事件有
1 dispatchtouchevent 这个方法用来分发touchevent
2 onintercepttouchevent 这个方法用来拦截touchevent
3 ontouchevent 方法用来处理touchevent
比较特殊一点的是onintercepttouchevent 事件,在activity中和view中是没有这个这个事件的,因为activity本身只是一个容器或者载体,不存在对事件拦截,而view本身就是一个事件的最小单元,或最小子类,没有可以拦截的子类事件,所以他们是没有onintercepttouchevent事件,只有dispatchtouchevent和ontouchevent事件。
二.流程图分解讲解
为了更好的理解触摸事件的整个传递机制我根据事件传递绘制了一张流程图,来帮助大家理解。![这里写图片描述]
本图主要包含三层,即activity viewgroup view,按照事件的传递逐级传递。有几个要点要注意,
1.dispatchtouchevent如果处理了本次事件,
那么他的执行顺序是这样的。这里是viewgroup的dispatchtouchevent处理了本次事件
2.ontouchevent 如果子view的touchevent没有处理本次事件,那么该事件会依次向上传递,知道有人处理,如果一直传递到activity 的ontouchevent还是没人处理,默认本次事件结束.
核心代码
1. activity
public class mainactivity extends activity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); } string tag = "mainactivity"; @override public boolean dispatchtouchevent(motionevent event) { string tag1 = "dispatchtouchevent"; switch (event.getaction()) { case motionevent.action_down: system.out.println(tag + tag1 + "action_down"); break; case motionevent.action_move: system.out.println(tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println(tag + tag1 + "action_up"); break; } return super.dispatchtouchevent(event); } @override public boolean ontouchevent(motionevent event) { string tag1 = "ontouchevent"; switch (event.getaction()) { case motionevent.action_down: system.out.println(tag + tag1 + "action_down"); break; case motionevent.action_move: system.out.println(tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println(tag + tag1 + "action_up"); break; } return false; } }
2.viewgroup
public class myviewgroup extends viewgroup { public myviewgroup(context context) { super(context); } public myviewgroup(context context, attributeset attrs) { super(context, attrs); } string tag = "myviewgroup"; @override public boolean dispatchtouchevent(motionevent event) { string tag1 = "dispatchtouchevent"; switch (event.getaction()) { case motionevent.action_down: system.out.println("------>"+tag +"-->"+ tag1 + "action_down"); break; case motionevent.action_move: system.out.println("------>"+tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println("------>"+tag + tag1 + "action_up"); break; } return super.dispatchtouchevent(event); } @override public boolean ontouchevent(motionevent event) { string tag1 = "ontouchevent"; switch (event.getaction()) { case motionevent.action_down: system.out.println("------>"+tag + tag1 + "action_down"); break; case motionevent.action_move: system.out.println("------>"+tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println("------>"+tag + tag1 + "action_up"); break; } return super.ontouchevent(event); } @override public boolean onintercepttouchevent(motionevent ev) { string tag1 = "onintercepttouchevent"; switch (ev.getaction()) { case motionevent.action_down: system.out.println("------>"+tag + tag1 + "action_down"); break; case motionevent.action_move: system.out.println("------>"+tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println("------>"+tag + tag1 + "action_up"); break; } return super.onintercepttouchevent(ev); } }
3.view
public class mybutton extends button { public mybutton(context context) { super(context); } public mybutton(context context, attributeset attrs) { super(context, attrs); } string tag = "mybutton"; @override public boolean dispatchtouchevent(motionevent event) { string tag1 = "dispatchtouchevent"; switch (event.getaction()) { case motionevent.action_down: system.out.println("------>"+tag + tag1 + "action_down"); break; case motionevent.action_move: system.out.println("------>"+tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println("------>"+tag + tag1 + "action_up"); break; } return super.dispatchtouchevent(event); } @override public boolean ontouchevent(motionevent event) { string tag1 = "ontouchevent"; switch (event.getaction()) { case motionevent.action_down: system.out.println("------>"+tag + tag1 + "action_down"); break; case motionevent.action_move: system.out.println("------>"+tag + tag1 + "action_move"); break; case motionevent.action_up: system.out.println("------>"+tag + tag1 + "action_up"); break; } return false; } }
以上只是部分代码,但是所有事件都已列出。
总结与归纳
通过以上学习我们应该可以更加深刻的理解事件的传递机制,但是在实际的开发过程中可能我们并不会全部用到,但是我们必须知道他的运行传递原理,这样遇到特殊的业务需求时,才不会出现卡壳,实际开发中我们多只要重写ontouchevent事件就已经能够满足需要,但是如果要重写其他事件,我们就要考虑更周到些,牵扯的会比较多。
demo点这里
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: java实现十六进制字符unicode与中英文转换示例
下一篇: Android离线缓存的实例代码