Ionic – Remove Disable spinner on splash screen [closed]
If it is a SplashScreenSpinner: In the config.xml file: <preference name=”ShowSplashScreenSpinner” value=”false”/> Official Docs
If it is a SplashScreenSpinner: In the config.xml file: <preference name=”ShowSplashScreenSpinner” value=”false”/> Official Docs
First, create your splash screen as a borderless, immovable form with your image on it, set to initially display at the center of the screen, colored the way you want. All of this can be set from within the designer; specifically, you want to: Set the form’s ControlBox, MaximizeBox, MinimizeBox and ShowIcon properties to “False” … Read more
The problem is most likely that you are running the splash screen (some sort of Dialog such as ProgressDialog I assume) in the same thread as all the work being done. This will keep the view of the splash screen from being updated, which can keep it from even getting displayed to the screen. You … Read more
In order to have a splash screen in a PhoneGap Android application you need to put your splash.png file into res/drawable-ldpi, res/drawable-mdpi, res/drawable-hdpi, res/drawable-xhdpi. Where those directories represent low, medium, high and extra large dots per inch. You’ll need to resize you splash.png (the file name is important here) for each directory or Android will … Read more
I’m pretty sure that if your Info.plist file has the Status bar is initially hidden value set to YES, then it won’t show while your application is loading. Once your application has loaded, you can re-show the status bar using UIApplication’s setStatusBarHidden:animated: method.
In the project plist file add the “Status Bar Style” property (key is UIStatusBarStyle). Then ignore all the possible values listed in the drop down for this property and type UIStatusBarStyleLightContent instead. And you don’t have to set UIViewControllerBasedStatusBarAppearanceto NOin your plist, you can set the preferredStatusBarStyle you want to your view controllers.
2018 Update – Please don’t use this info ! I’m leaving the below post for reference purposes. Please read Apple’s documentation Human Interface Guidelines – Launch Screens for details on launch screens and recommendations. Thanks Drekka July 2012 – As this reply is rather old, but stills seems popular. I’ve written a blog post based … Read more
Splash screen sizes for Android and at the same time for Cordova (a.k.a Phonegap), React-Native and all other development platforms Format : 9-Patch PNG (recommended) Dimensions – LDPI: – Portrait: 200x320px – Landscape: 320x200px – MDPI: – Portrait: 320x480px – Landscape: 480x320px – HDPI: – Portrait: 480x800px – Landscape: 800x480px – XHDPI: – Portrait: 720px1280px … Read more
Put this in a custom style and it solves all the problems. Using the hacky translucent fix will make your task bar and nav bar translucent and make the splashscreen or main screen look like spaghetti. <item name=”android:windowDisablePreview”>true</item>
Disclaimer This answer is from 2013 and is seriously outdated. As of Android 3.2 there are now 6 groups of screen density. This answer will be updated as soon as I am able, but with no ETA. Refer to the official documentation for all the densities at the moment (although information on specific pixel sizes … Read more