ViewTreeObserver
api的概述:
A view tree observer is used to register listeners that can be notified of global changes in the view tree. Such global events include, but are not limited to, layout of the whole tree, beginning of the drawing pass, touch mode change.... A ViewTreeObserver should never be instantiated by applications as it is provided by the views hierarchy. Refer to View.getViewTreeObserver() for more information.
簡單來說,這是個(gè)view事件的觀察者。要注意的是它的初始化就是調(diào)用View.getViewTreeObserver()。
包含下面6個(gè)事件:
interface ?ViewTreeObserver.OnDrawListener?
擋在一個(gè)視圖樹繪制時(shí),所要調(diào)用的回調(diào)函數(shù)的接口類(level 16)
interface ? ? ? ? ?ViewTreeObserver.OnGlobalFocusChangeListener ??
當(dāng)在一個(gè)視圖樹中的焦點(diǎn)狀態(tài)發(fā)生改變時(shí),所要調(diào)用的回調(diào)函數(shù)的接口類
interface ? ? ? ? ?ViewTreeObserver.OnGlobalLayoutListener
當(dāng)在一個(gè)視圖樹中全局布局發(fā)生改變或者視圖樹中的某個(gè)視圖的可視狀態(tài)發(fā)生改變時(shí),所要調(diào)用的回調(diào)函數(shù)的接口類
interface ? ? ? ? ?ViewTreeObserver.OnPreDrawListener
當(dāng)一個(gè)視圖樹將要繪制時(shí),所要調(diào)用的回調(diào)函數(shù)的接口類
interface ? ? ? ? ?ViewTreeObserver.OnScrollChangedListener
當(dāng)一個(gè)視圖樹中的一些組件發(fā)生滾動時(shí),所要調(diào)用的回調(diào)函數(shù)的接口類
interface ? ? ? ? ?ViewTreeObserver.OnTouchModeChangeListener
當(dāng)一個(gè)視圖樹的觸摸模式發(fā)生改變時(shí),所要調(diào)用的回調(diào)函數(shù)的接口類
具體的實(shí)例,
1,在OnCreate()中獲取控件高度與寬度
[java] view plaincopy2,啟動幀動畫
使用ViewTreeObserver.OnPreDrawListener listener:當(dāng)一個(gè)視圖樹將要繪制時(shí)產(chǎn)生事件,可以添加一個(gè)其事件處理函數(shù):onPreDraw
view也有onfocusChangedListener,是不是有些重復(fù)呢,這些回調(diào)肯定和view中的對應(yīng)的回調(diào)有關(guān)聯(lián)的,只不過這里的是有Global這個(gè)關(guān)鍵字,范圍更大,其他的用處深入android源碼應(yīng)該可以找到挺多的,待補(bǔ)充吧。
總結(jié)
以上是生活随笔為你收集整理的ViewTreeObserver的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用WindowManager添加Vie
- 下一篇: ViewTreeObserver简介