hack: call OnGlobalLayoutListener immediately

The NewPipe DownloadActivity waits for this callback
This commit is contained in:
Julian Winkler
2024-03-20 22:17:39 +01:00
parent 7ee4effb86
commit 7d6eae5fa5

View File

@@ -494,6 +494,9 @@ public final class ViewTreeObserver {
}
mOnGlobalLayoutListeners.add(listener);
// hack: many Applications wait for the global layout before doing anything
// so we dispatch the event immediately
listener.onGlobalLayout();
}
/**