OnGlobalLayoutListener

OnGlobalLayoutListener

1.implements ViewTreeObserver.OnGlobalLayoutListener{}

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

3.@Override
    public void onGlobalLayout() {}

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

05-11 13:17