一、ViewGroup概述 研究ViewGroup之前,我们先来看看ViewGroup的介绍: /** * A ViewGroup is a special view that can contain other views * (called children.) The view group is the base class for layouts and views * co…
上一篇文章我们已经分析了Android事件分发机制——View(一),今天给大家带来ViewGroup事件分发的源码解析。
案例
public class MyLinearLayout extends LinearLayout {private static String TAG MyLinearLayout.class.getSimpleName();pu…
本文是自己参照网上文章或视频,尝试梳理下ViewGroup的事件分发流程,来让自己对整个流程能进一步理解(至今还是不太理解,感觉好难)。 ViewGroup.dispatchTouchEvent()源码主要分为三步。
public boolean dispatchTouch…