---恢复内容开始---

一、MotionEvent : ACTION_DOWN(下按事件)、ACTION_UP(松开事件)、ACTION_MOVE(移动事件)

二、三大函数

1.dispatchTouchEvent(Event event) == > 分发函数,由系统自动调用(返回值为true时,viewGroup可以向其子控件分发事件,view则分发给自身)

public boolean dispatchTouchEvent(MotionEvent ev) {
        int action = ev.getAction();
        switch(action){
            case MotionEvent.ACTION_DOWN:
                Log.e("MyLinearLayout2", "dispatchTouchEvent-->ACTION_DOWN");
                break;
            case MotionEvent.ACTION_MOVE:
                Log.e("MyLinearLayout2","dispatchTouchEvent-->ACTION_MOVE");
                break;
            case MotionEvent.ACTION_UP:
                Log.e("MyLinearLayout2","dispatchTouchEvent-->ACTION_UP");
                break;
        }
        return super.dispatchTouchEvent(ev);

}

2.onInterceptTouchEvent(Event event) ==> 拦截函数(viewGroup有,view没有)

a.返回值为true时,viewGroup对象会将事件拦截,使得之后的UP和MOVE不会被任何控件相应;

b.返回值为false时,viewGroup不拦截事件,事件可以正常分发。

public boolean onInterceptTouchEvent(MotionEvent ev) {

        int action = ev.getAction();
        switch(action){
            case MotionEvent.ACTION_DOWN:
                Log.e("MyLInearLayout","onInterceptTouchEvent-->ACTION_DOWN");
                break;
            case MotionEvent.ACTION_MOVE:
                Log.e("MyLInearLayout","onInterceptTouchEvent-->ACTION_MOVE");
                break;
            case MotionEvent.ACTION_UP:
                Log.e("MyLInearLayout","onInterceptTouchEvent-->ACTION_UP");
                break;
        }
        return false;
    }

3.onTouchEvent(Event event) == >触摸相应函数

a.事件逐级向下传递,直到某个view或viewGroup执行onTouchEvent,若返回值为false,则会通知其父viewGroup执行onTouchEvent,若返回值为true,则不通知其父viewGroup执行onTouchEvent;

b.当某个view或viewGroup的onTouchEvent()相应,并且返回值为true时,之后的MOVE和UP的响应事件都会直接传递给该空间,并由该控件的onTouchEvent()响应;

直接上代码:

MainActivity:

 1 package com.example.qjm3662.myapplication;
 2 
 3 import android.app.Activity;
 4 import android.content.Context;
 5 import android.os.Bundle;
 6 import android.support.design.widget.FloatingActionButton;
 7 import android.support.design.widget.Snackbar;
 8 import android.support.v7.app.AppCompatActivity;
 9 import android.support.v7.widget.Toolbar;
 import android.util.AttributeSet;
 import android.util.Log;
 import android.view.MotionEvent;
 import android.view.View;
 import android.view.Menu;
 import android.view.MenuItem;
 import android.widget.LinearLayout;
 
 public class MainActivity extends Activity{
 
     @Override
     protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.activity_main);
     }

25 }

MyLInearLayout:

 1 package com.example.qjm3662.myapplication;
 2 
 3 import android.content.Context;
 4 import android.util.AttributeSet;
 5 import android.util.Log;
 6 import android.view.MotionEvent;
 7 import android.widget.LinearLayout;
 8 
 9 /**
  * Created by qjm3662 on 2016/4/10 0010.
  */
 public class MyLInearLayout extends LinearLayout {
     public MyLInearLayout(Context context, AttributeSet attrs) {
         super(context, attrs);
     }
 
     @Override
     public boolean dispatchTouchEvent(MotionEvent ev) {
         int action = ev.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("MyLInearLayout","dispatchTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("MyLInearLayout","dispatchTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("MyLInearLayout","dispatchTouchEvent-->ACTION_UP");
                 break;
         }
         return super.dispatchTouchEvent(ev);
     }
 
     @Override
     public boolean onTouchEvent(MotionEvent event) {
         int action = event.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("MyLInearLayout","onTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("MyLInearLayout","onTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("MyLInearLayout","onTouchEvent-->ACTION_UP");
                 break;
         }
         return false;
     }
 
     @Override
     public boolean onInterceptTouchEvent(MotionEvent ev) {
 
         int action = ev.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("MyLInearLayout","onInterceptTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("MyLInearLayout","onInterceptTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("MyLInearLayout","onInterceptTouchEvent-->ACTION_UP");
                 break;
         }
         return false;
     }
 

69 }

MyLinearLayout2:

 1 package com.example.qjm3662.myapplication;
 2 
 3 import android.content.Context;
 4 import android.util.AttributeSet;
 5 import android.util.Log;
 6 import android.view.MotionEvent;
 7 import android.widget.LinearLayout;
 8 
 9 /**
  * Created by qjm3662 on 2016/4/10 0010.
  */
 public class MyLinearLayout2 extends LinearLayout{
     public MyLinearLayout2(Context context) {
         super(context);
     }
 
     public MyLinearLayout2(Context context, AttributeSet attrs) {
         super(context, attrs);
     }
 
     public MyLinearLayout2(Context context, AttributeSet attrs, int defStyleAttr) {
         super(context, attrs, defStyleAttr);
     }
 
     @Override
     public boolean dispatchTouchEvent(MotionEvent ev) {
         int action = ev.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("MyLinearLayout2", "dispatchTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("MyLinearLayout2","dispatchTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("MyLinearLayout2","dispatchTouchEvent-->ACTION_UP");
                 break;
         }
         return super.dispatchTouchEvent(ev);
     }
 
     @Override
     public boolean onTouchEvent(MotionEvent event) {
         int action = event.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("MyLinearLayout2","onTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("MyLinearLayout2","onTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("MyLinearLayout2","onTouchEvent-->ACTION_UP");
                 break;
         }
         return false;
     }
 
     @Override
     public boolean onInterceptTouchEvent(MotionEvent ev) {
 
         int action = ev.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("MyLinearLayout2","onInterceptTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("MyLinearLayout2","onInterceptTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("MyLinearLayout2","onInterceptTouchEvent-->ACTION_UP");
                 break;
         }
         return true;
     }

76 }

view:

 1 package com.example.qjm3662.myapplication;
 2 
 3 import android.content.Context;
 4 import android.util.AttributeSet;
 5 import android.util.Log;
 6 import android.view.MotionEvent;
 7 import android.widget.TextView;
 8 
 9 /**
  * Created by qjm3662 on 2016/4/10 0010.
  */
 public class view extends TextView{
 
 
     public view(Context context) {
         super(context);
     }
 
     public view(Context context, AttributeSet attrs) {
         super(context, attrs);
     }
 
     public view(Context context, AttributeSet attrs, int defStyleAttr) {
         super(context, attrs, defStyleAttr);
     }
 
 
     @Override
     public boolean dispatchTouchEvent(MotionEvent ev) {
         int action = ev.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("view","dispatchTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("view","dispatchTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("view","dispatchTouchEvent-->ACTION_UP");
                 break;
         }
         return super.dispatchTouchEvent(ev);
     }
 
     @Override
     public boolean onTouchEvent(MotionEvent event) {
         int action = event.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("view","onTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("view","onTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("view","onTouchEvent-->ACTION_UP");
                 break;
         }
         return true;
     }
 
 
 }

view2:

 1 package com.example.qjm3662.myapplication;
 2 
 3 import android.content.Context;
 4 import android.util.AttributeSet;
 5 import android.util.Log;
 6 import android.view.MotionEvent;
 7 import android.widget.ImageView;
 8 
 9 /**
  * Created by qjm3662 on 2016/4/10 0010.
  */
 public class view2 extends ImageView{
     public view2(Context context) {
         super(context);
     }
 
     public view2(Context context, AttributeSet attrs) {
         super(context, attrs);
     }
 
     public view2(Context context, AttributeSet attrs, int defStyleAttr) {
         super(context, attrs, defStyleAttr);
     }
 
     @Override
     public boolean dispatchTouchEvent(MotionEvent event) {
         int action = event.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("view2", "dispatchTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("view2","dispatchTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("view2","dispatchTouchEvent-->ACTION_UP");
                 break;
         }
         return super.dispatchTouchEvent(event);
     }
 
     @Override
     public boolean onTouchEvent(MotionEvent event) {
         int action = event.getAction();
         switch(action){
             case MotionEvent.ACTION_DOWN:
                 Log.e("view2","onTouchEvent-->ACTION_DOWN");
                 break;
             case MotionEvent.ACTION_MOVE:
                 Log.e("view2","onTouchEvent-->ACTION_MOVE");
                 break;
             case MotionEvent.ACTION_UP:
                 Log.e("view2","onTouchEvent-->ACTION_UP");
                 break;
         }
         return false;
     }

58 }

布局:

<?xml version="1.0" encoding="utf-8"?>
<com.example.qjm3662.myapplication.MyLInearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">     <com.example.qjm3662.myapplication.view
        android:text="dsvsdvsvsdv"
        android:textSize="24sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <com.example.qjm3662.myapplication.MyLinearLayout2
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:orientation="vertical"
        >
        <com.example.qjm3662.myapplication.view2
            android:src="@drawable/ic_launcher"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </com.example.qjm3662.myapplication.MyLinearLayout2>

</com.example.qjm3662.myapplication.MyLInearLayout>

运行结果:

点击上面的TextView后松开:

04-10 06:42:32.234 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: dispatchTouchEvent-->ACTION_DOWN
04-10 06:42:32.234 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: onInterceptTouchEvent-->ACTION_DOWN
04-10 06:42:32.234 2414-2414/com.example.qjm3662.myapplication E/view: dispatchTouchEvent-->ACTION_DOWN
04-10 06:42:32.234 2414-2414/com.example.qjm3662.myapplication E/view: onTouchEvent-->ACTION_DOWN
04-10 06:42:32.474 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: dispatchTouchEvent-->ACTION_UP
04-10 06:42:32.474 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: onInterceptTouchEvent-->ACTION_UP
04-10 06:42:32.474 2414-2414/com.example.qjm3662.myapplication E/view: dispatchTouchEvent-->ACTION_UP
04-10 06:42:32.474 2414-2414/com.example.qjm3662.myapplication E/view: onTouchEvent-->ACTION_UP

点击下面的ImagView后松开:

04-10 06:43:58.322 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: dispatchTouchEvent-->ACTION_DOWN
04-10 06:43:58.322 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: onInterceptTouchEvent-->ACTION_DOWN
04-10 06:43:58.322 2414-2414/com.example.qjm3662.myapplication E/MyLinearLayout2: dispatchTouchEvent-->ACTION_DOWN
04-10 06:43:58.322 2414-2414/com.example.qjm3662.myapplication E/MyLinearLayout2: onInterceptTouchEvent-->ACTION_DOWN
04-10 06:43:58.322 2414-2414/com.example.qjm3662.myapplication E/MyLinearLayout2: onTouchEvent-->ACTION_DOWN

04-10 06:43:58.322 2414-2414/com.example.qjm3662.myapplication E/MyLInearLayout: onTouchEvent-->ACTION_DOWN

Android触摸事件的分发机制的更多相关文章

  1. Android触摸事件的应用

    前言 上一篇讲了Android触摸事件的传递机制,具体可以看这里 初识Android触摸事件传递机制.既然知道Android中触摸事件的传递分发,那么它能解决什么样的问题,在我们实际开发中如何应用,这 ...

  2. android自定义控件(9)-Android触摸事件分发机制

    触摸事件的传递机制:   首先是最外层的viewgroup接收到事件,然后调用会调用自己的dispatchTouchEvent方法.如果在ACTION_DOWN的时候dispatchTouchEven ...

  3. 初识Android触摸事件传递机制

    前言 今天总结的一个知识点是Andorid中View事件传递机制,也是核心知识点,相信很多开发者在面对这个问题时候会觉得困惑,另外,View的另外一个难题滑动冲突,比如在ScrollView中嵌套Li ...

  4. 一个demo让你彻底理解Android中触摸事件的分发

    注:本文涉及的demo的地址:https://github.com/absfree/TouchDispatch 1. 触摸动作及事件序列 (1)触摸事件的动作 触摸动作一共有三种:ACTION_DOW ...

  5. Android触摸事件传递机制

    简单梳理一下Android触摸事件传递机制的知识点. 一.View与ViewGroup的关系 View和ViewGroup二者的继承关系如下图所示: View是Android中最基本的一种UI组件,它 ...

  6. 【知识梳理1】Android触摸事件机制

    前言 随着科学技术的发展,智能手机早已成为我们当代人身边不可缺少的"伙伴"之中的一个,堪比对象女友.每天我们对着手机反复的做着点击.滑动操作,而手机则随着我们的操作给我们展示她的精 ...

  7. 一个demo让你彻底理解Android触摸事件的并发

    注:本文涉及的demo的地址:https://github.com/absfree/TouchDispatch 1. 触摸动作及事件序列 (1)触摸事件的动作 触摸动作一共有三种:ACTION_DOW ...

  8. View,ViewGroup的Touch事件的分发机制

    原帖地址:http://blog.csdn.net/xiaanming/article/details/21696315 ViewGroup的事件分发机制 我们用手指去触摸Android手机屏幕,就会 ...

  9. Andriod 从源码的角度详解View,ViewGroup的Touch事件的分发机制

    转自:xiaanming的博客(http://blog.csdn.net/xiaanming/article/details/21696315) 今天这篇文章主要分析的是Android的事件分发机制, ...

随机推荐

  1. iOS自定义的UISwitch按钮

    UISwitch开关控件 开关代替了点选框.开关是到目前为止用起来最简单的控件,不过仍然可以作一定程度的定制化. 一.创建 UISwitch* mySwitch = [[ UISwitchalloc] ...

  2. 转:Zend Framework 2.0 分析

    文章来自于:http://bbs.phpchina.com/thread-268362-1-1.html ZF2已经发布,与ZF1相比,MVC这一模块内部的实现机制可谓大相径庭,许多用过ZF1的PHP ...

  3. hdu 5100 Chessboard

    http://acm.hdu.edu.cn/showproblem.php?pid=5100 在比赛时没看懂题就没看,结束之后,看了解题报告才知道怎么做. 解题报告: 首先,若n<k,则棋盘连一 ...

  4. 软硬大比拼 硅胶、TPU和PC材质对比

    手机保护壳的材质有很多种,目前保护壳市场上最为常见的就是硅胶.TPU.PC材质了.那么我们不禁要问,PU.硅胶.PC三材质到底有哪些区别呢?普通消费者在购买保护壳的时候能否从外表就能看出保护壳材质?P ...

  5. 调用API函数,在窗口非客户区绘图(通过GetWindowDC获得整个窗口的DC,就可以随意作画了)

    http://hi.baidu.com/3582077/item/77d3c1ff60f9fa5ec9f33754 调用API函数,在窗口非客户区绘图 GDI+的Graphics类里有个FromHdc ...

  6. 【HDOJ】5131 Song Jiang's rank list

    STL的使用. /* 5131 */ #include <iostream> #include <map> #include <cstdio> #include & ...

  7. BZOJ2324: [ZJOI2011]营救皮卡丘

    2324: [ZJOI2011]营救皮卡丘 Time Limit: 10 Sec  Memory Limit: 256 MBSubmit: 1359  Solved: 522[Submit][Stat ...

  8. Yarn应用程序运行流程剖析

    Yarn(Yet Another Resource Negotiator)是一个Hadoop集群资源管理系统,Hadoop2时被引入,旨在提高MapReduce的性能,但YARN已足够通用,使得它可以 ...

  9. php 环境搭建注意事项

    安装php 环境,最后安装集成环境,因为 apache+php 互联不是很容易. 这里主要是两个工具集成工具(wamp ,AppServ),其实这两个集成环境都包括(apache+mysql+php) ...

  10. app开发历程---1,servlet 返回JSON作为android 接口实例

    最近公司领导要做app,虽然以前自己是做app的测试的,但是好多东西都不是很明白,这里记录自己这段日子的历程. 1.搭建服务器端,以前做测试的时候,他们用的是Apache+mysql+php,而自己上 ...