TouchDelegate源码分析

在View的onTouchEvent()中会涉及到这个类,就顺便看了一看,虽然之前没有接触过。

用途

如果有两个View,分别是ViewA,ViewB,可以给ViewA setTouchDelegate(bounds, ViewB),这样当ViewA中落在bounds的事件就会传给ViewB。

使用场景见官方文档

源码分析

这个类主要就是一个diapatchTouchEvent(),用来将事件分发给委托View。

/**
 * Helper class to handle situations where you want a view to have a larger touch area than its
 * actual view bounds. The view whose touch area is changed is called the delegate view. This
 * class should be used by an ancestor of the delegate. To use a TouchDelegate, first create an
 * instance that specifies the bounds that should be mapped to the delegate and the delegate
 * view itself.
 * <p>
 * The ancestor should then forward all of its touch events received in its
 * {@link android.view.View#onTouchEvent(MotionEvent)} to {@link #onTouchEvent(MotionEvent)}.
 * </p>
 */
// 如果你需要一个View拥有比自己真实区域更大的区域接受触摸事件,你就可以使用这个工具类。
// 触摸区域改变的View叫做委托View。
// 这个类应该被包含委托View的父View使用,父View就应该将它所有在区域内的事件都传递给它。
public class TouchDelegate {

    /**
     * View that should receive forwarded touch events
     */
    // 接受额外区域事件的View,委托View。
    private View mDelegateView;

    /**
     * Bounds in local coordinates of the containing view that should be mapped to the delegate
     * view. This rect is used for initial hit testing.
     */
    // 构造器传入的需要传递给委托View的坐标区域。
    private Rect mBounds;

    /**
     * mBounds inflated to include some slop. This rect is to track whether the motion events
     * should be considered to be be within the delegate view.
     */
    // mBounds扩充一些最小滑动距离后的区域,用来判断事件是否应该被考虑在委托View的区域中
    private Rect mSlopBounds;

    /**
     * True if the delegate had been targeted on a down event (intersected mBounds).
     */
    // 如果被指向一个ACTION_DOWN事件,就为true。
    private boolean mDelegateTargeted;

    /**
     * The touchable region of the View extends above its actual extent.
     */
    // 委托View的扩充区域在真实区域之上
    public static final int ABOVE = 1;

    /**
     * The touchable region of the View extends below its actual extent.
     */
    // 委托View的扩充区域在真实区域之下
    public static final int BELOW = 2;

    /**
     * The touchable region of the View extends to the left of its
     * actual extent.
     */
    // 委托View的扩充区域在真实区域左边
    public static final int TO_LEFT = 4;

    /**
     * The touchable region of the View extends to the right of its
     * actual extent.
     */
    // 委托View的扩充区域在真实区域右边
    public static final int TO_RIGHT = 8;

    // 被看作移动事件的最小滑动距离
    private int mSlop;

    /**
     * Constructor
     *
     * @param bounds Bounds in local coordinates of the containing view that should be mapped to
     *        the delegate view
     * @param delegateView The view that should receive motion events
     */
    /**
     * 构造器,初始化。
     * @param bounds 需要映射到委托View的区域
     * @param delegateView 委托View
     */
    public TouchDelegate(Rect bounds, View delegateView) {
        mBounds = bounds;

        // 获得最小滑动参数
        mSlop = ViewConfiguration.get(delegateView.getContext()).getScaledTouchSlop();
        mSlopBounds = new Rect(bounds);
        // 将区域的每条边向外扩大移动mSlop的距离
        mSlopBounds.inset(-mSlop, -mSlop);
        mDelegateView = delegateView;
    }

    /**
     * Will forward touch events to the delegate view if the event is within the bounds
     * specified in the constructor.
     *
     * @param event The touch event to forward
     * @return True if the event was forwarded to the delegate, false otherwise.
     */
    /**
     * 如果事件在构造器中指定的区域内,就将该事件委托传递给构造器指定的View。
     * @param event 事件
     * @return 是否成功的传递给委托View并消耗事件。
     */
    public boolean onTouchEvent(MotionEvent event) {
        // 获取事件相对于事件分发到的View的坐标
        int x = (int)event.getX();
        int y = (int)event.getY();
        boolean sendToDelegate = false;
        boolean hit = true;
        boolean handled = false;

        switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            Rect bounds = mBounds;
            // 判断事件是否在委派控制的区域内
            if (bounds.contains(x, y)) {
                // 在区域内就置为true
                mDelegateTargeted = true;
                sendToDelegate = true;
            }
            break;
        case MotionEvent.ACTION_UP:
        case MotionEvent.ACTION_MOVE:
            // ACTION_UP和ACTION_MOVE可能位于一个ACTION_MOVE事件之后,所以使用mSlopBounds判断。
            sendToDelegate = mDelegateTargeted;
            // 如果接受过ACTION_DOWN事件,并且在区域内。
            if (sendToDelegate) {
                Rect slopBounds = mSlopBounds;
                // 判断如果不在扩展最小滑动距离的区域中,就将hit置为false。
                if (!slopBounds.contains(x, y)) {
                    hit = false;
                }
            }
            break;
        case MotionEvent.ACTION_CANCEL:
            // 如果是取消事件,sendToDelegate赋值为ACTION_DOWN时赋的值
            sendToDelegate = mDelegateTargeted;
            // 再将mDelegateTargeted重新赋值false,因为此时事件序列应该是要结束了。
            mDelegateTargeted = false;
            break;
        }
        // 如果上面赋值了true,就去将事件传递给委托View。
        if (sendToDelegate) {
            final View delegateView = mDelegateView;

            // 如果该事件为ACTION_MOVE事件后,并且还在区域内。
            if (hit) {
                // Offset event coordinates to be inside the target view
                // 将事件的坐标重新设置为委托View的中心。
                event.setLocation(delegateView.getWidth() / 2, delegateView.getHeight() / 2);
            } else {
                // Offset event coordinates to be outside the target view (in case it does
                // something like tracking pressed state)
                int slop = mSlop;
                // 如果在区域外了就设置在委托区域之外两倍的最小滑动距离上。
                event.setLocation(-(slop * 2), -(slop * 2));
            }
            // 调用委托View去分发处理该事件。
            handled = delegateView.dispatchTouchEvent(event);
        }
        // 返回值true表示将事件分发给了委托View并且委托View处理了该事件。
        // 返回值为false表示委托View没有处理事件,或者因为事件坐标的原因没有交给委托View处理。
        return handled;
    }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容