基于回调的事件处理机制

  1. 回调机制和监听机制的区别
  2. 基于回调的事件传播
    基于回调的事件处理机制_第1张图片
  3. 监听器和回调同时存在时,监听的事件会优先于回调,先执行
  4. 回调:从控件本身内部开始回调,如果返回false逐渐向外扩散传播

自定义的Button(在空间本身回调)

package com.example.test0508.widget;

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.Button;

import androidx.appcompat.widget.AppCompatButton;

public class MyButton extends AppCompatButton {
    public MyButton(Context context) {
        super(context);
    }

    public MyButton(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MyButton(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        super.onTouchEvent(event);
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN:
                Log.d("MyButton" , "--onTouchEvent");
                break;
        }
        return false;//返回false,表明我处理了,但是没有完,我要向外传播
    }

}


EventActivity以及页面布局文件

package com.example.test0508;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;


import com.example.test0508.widget.MyButton;

//通过事件源所在的类实现,让Activity实现这个Listener
public class EventActivity extends AppCompatActivity {

    private MyButton myButton;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_event);
        myButton = findViewById(R.id.btn_my_button);
        myButton.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View view, MotionEvent motionEvent) {
                switch (motionEvent.getAction()){
                    case MotionEvent.ACTION_DOWN:
                        Log.d("Listener","onTouchEvent");
                        break;
                }
                return false;
            }
        });
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN :
                Log.d("Activity","onTouchEvent");
                break;
        }

        return false;
    }
}

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="15dp"
    >

    <Button
        android:id="@+id/btn_event1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="click me"
        android:textAllCaps="false"
        />

    <com.example.test0508.widget.MyButton
        android:id="@+id/btn_my_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="自己定义的button"
        android:textAllCaps="false"
        />

</LinearLayout>

你可能感兴趣的:(Android)