【安卓乾坤大罗移,将容器触摸事件传至还有一容器!】炒沙作縻终不饱,缕冰文章费工巧。这篇文章主要讲述安卓乾坤大罗移,将容器触摸事件传至还有一容器!相关的知识,希望能为你提供帮助。
思路:
1.基于view.dispatchTouchEvent
作用:
1.点击时,透过容器点到不是其子控件的控件、!
2.透过透明activity或dialog,将事件传至下方的activity、!
注:1>
还可通过MotionEvent.obtain(downTime, eventTime, action, x, y, metaState);
模拟事件,如用于引导中、。
被点击的容器:
public class MyLinearLayout extends LinearLayout { public MyLinearLayout(Context arg0, AttributeSet arg1) { // TODO Auto-generated constructor stub super(arg0, arg1); } @Override public boolean onInterceptTouchEvent(MotionEvent ev) { // TODO Auto-generated method stub MotionEvent event2 = MotionEvent.obtain(ev); //MainActivity.llTest为目标容器,即将事件复制一份分发至llTest MainActivity.llTest.dispatchTouchEvent(event2); return super.onInterceptTouchEvent(ev); } }
效果图,下图点击左边button时,事件也传至右側了:
文章图片
推荐阅读
- android开发学习 ------- RecyclerView多类型实例
- react native android 真机调试
- SpringMVC笔记- 不配置HandlerMapping
- Android APP启动页面动态加载全部权限
- Spring的配置文件ApplicationContext.xml配置头文件解析
- spring配置文件头部配置解析(applicationContext.xml)
- Unity之SDK接入(Unity与Android通信)
- 在elasticsearch中建立index,并添加type定义mapping
- Android笔记---点击事件的四种写法