Is it possible to replace the splash screen for iOS and Android with a custom one?
As far as I know there are 2 splash screens in iOS PhoneGap:
The "normal" iOS splash screen
The PhoneGap splash screen (same image with a spinner)
Would it be possible to:
replace the "normal" iOS splash on runtime as it is possible with normal xCode Projects
replace the "spinner" splash screen (I couldn´t figure out if that´s the phonegap-plugins / iPhone / SplashScreen code or not)
It seems that the normal xCode ways of doing things get overwritten. I´m a bit confused by that as I´m new to PhoneGap.
yeah,you can do that.
make your custom image in 640×960px(name:Default#2x~iphone.png) and 320×480px(name:Default~iphone.png)
go to[Name Your Project]/Resources/splash
replace them..
Related
Just updated to Xcode 13 and Visualstudio Mac to 8.10.10. Since then my app:
Wont display the splash screen.
The app is cropped at top and bottom.
Ui is acting generally weird.
Now I have read old threads on similar problems and adding the Launch screen interface file base name. in the info.plist file does make the app cover the whole screen.
I have tried switching splash screens and change location. But it's just black. I don't use a storyboard for the splash and instead provide several different resolutions, which have worked fine for several years.
The UI is glitching like the loader picture, and several different ui elements where colors are provided are "cut" in the middle showing two colors when it should switch.
I have read the release notes for xcode13 but haven't found anything related that would break the whole UI.
The interface glitching and no splash screen I can't seem to find a solution for. Everything worked fine before the update.
What could be the problem? Some setting in the info.plist, a checkbox in the storyboard?
I'm still new to Xamarin and iOS development and greatly accept suggestions.
Let me know if I can clarify anything.
Thanks
iOS load glitch picture
According to your statement, you are not using a storyboard, so you need to replace the Launch Screen with a LaunchImage, then check the LaunchImage file (if it does not exist, you need to create it yourself) and add all strictly standardized pictures inside.
I'm using Xamarin Forms to create iOS app. Only on iOS 11 the app splash screen has a black box in middle instead of an image. I don't know if it is related but this issue started to appear when we changed language on phone to test localisation. I'm using LaunchScreen.storyboard to create my splash screen that comes with Xamarin Forms sample project. Also if I change the image name in LaunchScreen.storyboard the splash screen starts to appear right for a limited time.
I'm using latest VS 2017 15.7.2 and Latest Xcode
In my case, my image for the splash screen was on resource (not assets) folder as a png file.
In the splashScreen widget, changing the name of image without extension (my_image.png -> my_image) worked for me.
I have the Unity Plus account which says in it's checklist that one of the things you can do is customise or remove the splash screen but I can't for the life of me find out how.
removing iOS splash screen from unity build
The animated image below will show you steps on how to remove it completely. You can also put a custom one from the-same place.
I'm building an iOS app using as3 and air to package the app onto my iPhone 6. My issue is that I get a black bar above and below the app, the app itself is not going fullscreen. The stage screen is set to the iPhone 6 screen dimensions.
I have tried by adding the following launch images into the app folder; Default-667h#2x.png, Default-568h#2.png, and Default#2x.png. In the AIR for iOS Settings under general, I've added them to the 'Included files' section but the bars are still there. Dropbox link to image.
Does anyone have any fixes for this?
iPhone 6 requires the Default image of Default-375w-667h#2x.png to be included. (and iPhone 6+ needs Default-414w-736h#3x.png).
This is a handy web page to bookmark which lists file sizes and names.
http://blog.tomasmahrik.com/list-of-properties-sizes-for-application-icons-launch-images-screenshots-video-previews-for-ios-air-apps/
You should set your apps to not scale (looks like yours is scale to fit) and align top left:
stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
Resently had the same problem and splash screens didn't help. For me solution was only this How do I create launch images for iPhone 6 / 6 Plus Landscape Only Apps?
I am working on a iOS project with Cordova. The Project is in Landscape only.
If I copy a Default.png in the Project folder, it is displayed correctly in the launcher image but in the Cordova splash screen it is rotated by 90°.
If I rotate the Default.png the launcher image is oddly stretched and the Cordova splash screen is is shown perfectly.
The Landscape/Portrait tag doesn't work because Cordova just uses the Landscape-image.
Is there a way to use different images for the launcher and the splash screen?
You need to set all the splahs screens in the Resources folder. Then in iOS you can also set what orientations you want your application work in. If you be specific with your splash screens then it can only show what you put in there.
Short answer - I beileve the launch image an splash screen are one in teh same.
This question looks similar - Orienting iOS splash image to landscape/portrait according to launch orientation