Created
April 16, 2015 18:41
-
-
Save bkurzius/11d7825138c0a20da0d5 to your computer and use it in GitHub Desktop.
android listener when a layout draws
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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