Android Touch Event派发分析
早前画了touch事件派发草图,重新整理了下
Touch Event: Down
Down事件,无论
clickable
与否都会各层级传递
Touch Event: Move
Hierarchy | clickable /longClickable |
---|---|
Parent | false |
Child | false |
Hierarchy | clickable /longClickable |
---|---|
Parent | false /true |
Child | true |
Hierarchy | clickable /longClickable |
---|---|
Parent | true |
Child | false |
Touch Event: Up
Hierarchy | clickable /longClickable |
---|---|
Parent | false |
Child | false |
Hierarchy | clickable /longClickable |
---|---|
Parent | true /false |
Child | true |
Hierarchy | clickable /longClickable |
---|---|
Parent | true |
Child | false |
Android Touch Event派发分析
https://blog.dreamtobe.cn/2016/03/10/touch_event/