iOS 7 launch image (splash screen) fades out

I have managed to do that in the AppController. Just place this code right after the creation of the glView UIImage* image = [UIImage imageNamed:[self getLaunchImageName]]; if ([[UIScreen mainScreen] respondsToSelector: @selector(scale)]) { float screenScale = [[UIScreen mainScreen] scale]; if (screenScale > 1.) image = [UIImage imageWithCGImage:image.CGImage scale:screenScale orientation:image.imageOrientation]; } UIImageView *splashView = [[UIImageView alloc] initWithImage:image]; … Read more

blank screen comes before splash

Generally speaking, splash screens are not recommended for an app but if you really must. Android will load a blank layout before it loads an activity layout based on the theme you have set for it. The solution is to set the theme of the splash activity to a transparent one. Create a transparent theme … Read more

SplashScreen with Vector stretched full screen

I stumbled upon the same problem. Unfortunately there does not seem to be a possibility to make the splash screen work with just a vector drawable for pre API 23. The problem is you can’t load VectorDrawableCompat outside of the process, like in this case in your themes android:windowBackground. So what is likely happening here … Read more

How to set the splash screen for react-native android

I had tried 3 of the following ways. The first one is what I am currently using for android splash screen for react-native projects. Using a npm package written by other. reference: https://github.com/remobile/react-native-splashscreen Create a SplashScreen component and redirect afterward. reference: How to create some kind of Splash screen/Launching screen, which disappears after App loaded? … Read more