Skip to content

Instantly share code, notes, and snippets.

@Override
protected void onResume() {
super.onResume();
loadImageWhenReady(imageView, mPayload);
}
private static void loadImageWhenReady(final ImageView v, final String url) {
v.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {