Remove splash screen in phonegap for both ios and

2019-04-28 21:45发布

I am trying to remove the splash screen completely in the phonegap application for both ios and android. The navigator.hide() function works only after the loading of html page, but i need to remove the splash screen even before that. Please let me know is there any option available for doing this.

3条回答
霸刀☆藐视天下
2楼-- · 2019-04-28 22:25

Cordova 1.6.0 – the navigator.splashscreen interface has been removed pending cross-platform support. Now You can use :

// to hide
cordova.exec(null, null, "SplashScreen", "hide", [])
// to show
cordova.exec(null, null, "SplashScreen", "show", [])

I found it Here : iOS PhoneGap / Cordova – Splash screen control

If you want some other Reference then check PhoneGap Android SplashScreen Just Got Better in the Link.

You can also go through this Google Discussion.

Hope it will be helpful to you.

查看更多
淡お忘
3楼-- · 2019-04-28 22:25

Hope it will help someone:

Using PhoneGap 2.6.0, what I did is just commenting the:

<plugin name="SplashScreen" value="CDVSplashScreen" />

line in the PhoneGap's config.xml file (usually located at iOS project root)

查看更多
疯言疯语
4楼-- · 2019-04-28 22:26

Check out this post

copying the accepted answer for quick reference:

On iOS you should be able to call navigator.splashscreen.hide();

Support for doing this in Android is available since 1.8.0.

查看更多
登录 后发表回答