Skip to content

Instantly share code, notes, and snippets.

@douo
Last active December 13, 2015 22:28
Show Gist options
  • Save douo/4984367 to your computer and use it in GitHub Desktop.
Save douo/4984367 to your computer and use it in GitHub Desktop.
how to detect layout inflate completely in activity
getWindow().getDecorView().getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener(){
public void onGlobalLayout() {
// the code from here where excute after layout is complete
getWindow().getDecorView().getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment