We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fa15b7 commit 2094aeaCopy full SHA for 2094aea
pythonforandroid/recipes/android/src/android/_android.pyx
@@ -212,6 +212,14 @@ TYPE_TEXT_VARIATION_POSTAL_ADDRESS = 112
212
TYPE_TEXT_VARIATION_URI = 16
213
TYPE_CLASS_PHONE = 3
214
215
+# SDL2 presplash remove
216
+def remove_presplash():
217
+ '''Remove android presplash in SDL2 bootstrap.'''
218
+ try:
219
+ mActivity.removeLoadingScreen()
220
+ except:
221
+ return
222
+
223
def show_keyboard(target, input_type):
224
if input_type == 'text':
225
_input_type = TYPE_CLASS_TEXT
0 commit comments