码迷,mamicode.com
首页 > 移动开发 > 详细

【安卓】乾坤大罗移,将容器触摸事件传至另一容器、!

时间:2014-07-12 21:50:18      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:android   事件   透过容器   透过activity   透过dialog   

思路:

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);
	}
}


效果图,下图点击左边按钮时,事件也传至右侧了:

bubuko.com,布布扣






【安卓】乾坤大罗移,将容器触摸事件传至另一容器、!,布布扣,bubuko.com

【安卓】乾坤大罗移,将容器触摸事件传至另一容器、!

标签:android   事件   透过容器   透过activity   透过dialog   

原文地址:http://blog.csdn.net/carlin321/article/details/37700085

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!