Skip to content

Instantly share code, notes, and snippets.

@bkurzius
Created April 16, 2015 18:41
Show Gist options
  • Save bkurzius/11d7825138c0a20da0d5 to your computer and use it in GitHub Desktop.
Save bkurzius/11d7825138c0a20da0d5 to your computer and use it in GitHub Desktop.
android listener when a layout draws
mProgressBar.getViewTreeObserver()
.addOnGlobalLayoutListener(
new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
//... do code here
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment