Android事件传递机制(一)deprecated

main.xml如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <com.cn.EventButton
        android:id="@+id/button"
        android:layout_width="250dip"
        android:layout_height="250dip"
        android:layout_centerInParent="true"
        android:text="Touch me"
       />

</RelativeLayout>

MainActivity如下:

package com.cn;
import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
/**
 * Demo描述:
 * 测试Touch事件的传递,代码结构如下:
 * 1 定义一个Button 重写onTouchEvent()方法
 * 2 在Activity中为该Button设置OnTouchListener
 * 3 重写Activity的onTouchEvent()
 * 注意:
 * 在以上的三步的结尾处均返回false,表示未处理完事件继续传播
 *
 * 运行测试结果,输出的顺序为:
 * 1 EventButton OnTouchListener in MainActivity
 * 2 EventButton onTouchEvent
 * 3 MainActivity onTouchEvent
 *
 * 即Touch事件的处理顺序为:
 * 1 自定义button的listener
 * 2 自定义button的onTouchEvent()方法
 * 3 Activity的onTouchEvent()
 * 所以,按照这个处理顺序只要在对于的方法结尾处返回true.
 * 那么对于该事件的处理就不会继续传递下去.
 *
 */
public class MainActivity extends Activity {
	private EventButton mEventButton;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		init();
	}
   private void init(){
	   mEventButton=(EventButton) findViewById(R.id.button);
	   mEventButton.setOnTouchListener(new OnTouchListener() {
		@Override
		public boolean onTouch(View v, MotionEvent event) {
			System.out.println("---> EventButton OnTouchListener in MainActivity ");
			return false;
		}
	});

   }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
    	super.onTouchEvent(event);
    	System.out.println("---> MainActivity onTouchEvent");
    	return false;
    }

}

EventButton如下:

package com.cn;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.Button;

public class EventButton extends Button {
	public EventButton(Context context, AttributeSet attrs) {
		super(context, attrs);
	}

	@Override
	public boolean onTouchEvent(MotionEvent event) {
		super.onTouchEvent(event);
		System.out.println("---> EventButton onTouchEvent");
		return false;
	}

}

 

时间: 2025-01-31 10:51:54

Android事件传递机制(一)deprecated的相关文章

Android事件传递机制(三)deprecated

main.xml如下: <!-- 自定义布局中,放置一个自定义控件 --> <cn.c.MyFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <cn.c.MyLinearLayout

Android事件传递机制(二)deprecated

main.xml如下: <!-- 自定义布局中,放置一个自定义控件 --> <cn.c.MyFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <cn.c.MyLinearLayout

Android事件传递机制(四)deprecated

main.xml如下: <!-- 自定义布局中,放置一个自定义控件 --> <cn.c.MyFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <cn.c.MyLinearLayout

Android事件传递机制(笔记)deprecated

总结: 1 事件的传递方向为:从最外层(Activity)传递至最内层(某个View)    事件的消费方向为:从最内层(某个View)传递至最外层(Activity)    该两个方向是相反的 2 ViewGroup中事件处理的流程是:    dispatchTouchEvent->onInterceptTouchEvent->onTouchEvent    View中事件处理的流程是:    dispatchTouchEvent->onTouchEvent    只有当前者返回tru

Android事件传递机制_Android

实验环境 OS X 10.9 Eclipse(ADT) Android源码版本:API Level 19(Android 4.4) Android事件构成 在Android中,事件主要包括点按.长按.拖拽.滑动等,点按又包括单击和双击,另外还包括单指操作和多指操作.所有这些都构成了Android中的事件响应.总的来说,所有的事件都由如下三个部分作为基础: 按下(ACTION_DOWN) 移动(ACTION_MOVE) 抬起(ACTION_UP) 所有的操作事件首先必须执行的是按下操作(ACTIO

Android事件传递机制(零)

MainActivity如下: package com.cn; import android.app.Activity; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import android.view.View.OnTouchListener; /** * Demo描述: * http://blog.csdn.net/lfdfhl/article/details/89

Android事件传递机制

实验环境 OS X 10.9 Eclipse(ADT) Android源码版本:API Level 19(Android 4.4) Android事件构成 在Android中,事件主要包括点按.长按.拖拽.滑动等,点按又包括单击和 双击,另外还包括单指操作和多指操作.所有这些都构成了Android中的事件响应 .总的来说,所有的事件都由如下三个部分作为基础: 按下(ACTION_DOWN) 移动(ACTION_MOVE) 抬起(ACTION_UP) 所有的操作事件首先必须执行的是按下操作(ACT

源码-Android中事件传递机制原理

问题描述 Android中事件传递机制原理 我们知道,所有的控件直接或间接的继承子View,View的子类有ViewGroup,并且ViewGroup的子类也会有其他的子View,那么他们之间事件的传递机制是怎样的?对源码有研究的吗? 解决方案 android事件传递机制Android 事件的传递机制Android之事件传递机制 解决方案二: http://blog.csdn.net/pi9nc/article/details/9281829http://www.csdn123.com/html

详细分析Android中onTouch事件传递机制_Android

onTach介绍 ontach是Android系统中整个事件机制的基础.Android中的其他事件,如onClick.onLongClick等都是以onTach为基础的. onTach包括从手指按下到离开手机屏幕的整个过程,在微观形式上,具体表现为action_down.action_move和action_up等过程. onTach两种主要定义形式如下: 1.在自定义控件中,常见的有重写onTouchEvent(MotionEvent ev)方法.如在开发中经常可以看到重写的onTouchEv