Last active
December 18, 2017 03:24
-
-
Save raymondctc/545bb4ca6a46911625179b9416642819 to your computer and use it in GitHub Desktop.
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
/** | |
* | |
* @param originalViewContainerWithViewStub | |
*/ | |
@CallSuper | |
protected void afterViewStubInflated(View originalViewContainerWithViewStub) { | |
mHasInflated = true; | |
if (originalViewContainerWithViewStub != null) { | |
View pb = originalViewContainerWithViewStub.findViewById(R.id.inflateProgressbar); | |
pb.setVisibility(View.GONE); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment