We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c255b76 commit a7a878bCopy full SHA for a7a878b
pythonforandroid/bootstraps/sdl2/build/src/org/kivy/android/PythonActivity.java
@@ -131,6 +131,12 @@ protected void onPostExecute(String result) {
131
// private data if we do not.
132
mActivity.finishLoad();
133
134
+ // finishLoad called setContentView with the SDL view, which
135
+ // removed the loading screen. However, we still need it to
136
+ // show until the app is ready to render, so pop it back up
137
+ // on top of the SDL view.
138
+ mActivity.showLoadingScreen();
139
+
140
String app_root_dir = getAppRoot();
141
if (getIntent() != null && getIntent().getAction() != null &&
142
getIntent().getAction().equals("org.kivy.LAUNCH")) {
0 commit comments