OnGlobalLayoutListener用法

1.implements ViewTreeObserver.OnGlobalLayoutListener{}

2.mContentView.getViewTreeObserver().addOnGlobalLayoutListener(this)

3.@Override
    public void onGlobalLayout() {}

4.mContentView.getViewTreeObserver().removeOnGlobalLayoutListener(this);

原文地址:https://www.cnblogs.com/dubo-/p/7856172.html