- Marquer comme nouveau
- Marquer
- S'abonner
- Sourdine
- S'abonner au fil RSS
- Surligner
- Imprimer
- Signaler un contenu inapproprié
Lien copié
2 Réponses
- Marquer comme nouveau
- Marquer
- S'abonner
- Sourdine
- S'abonner au fil RSS
- Surligner
- Imprimer
- Signaler un contenu inapproprié
You can put your custom splash screen through Projects > Launch Icons and Splash Screens
- Marquer comme nouveau
- Marquer
- S'abonner
- Sourdine
- S'abonner au fil RSS
- Surligner
- Imprimer
- Signaler un contenu inapproprié
If you are testing on the emulator, open the "Device and Network Settings" section on the right side panel in emulator tab, there is an option to uncheck "simulate splash screen".
To remove splash screen in the app build, you have add this and call it in device ready:
app.hideSplashScreen = function() { "use strict" ; // see https://github.com/01org/appframework/blob/master/documentation/detail/%24.ui.launch.md // Do the following if you disabled App Framework autolaunch (in index.html, for example) // $.ui.launch() ; if( navigator.splashscreen && navigator.splashscreen.hide ) { // Cordova API detected navigator.splashscreen.hide() ; } if( window.intel && intel.xdk && intel.xdk.device ) { // Intel XDK device API detected, but... if( intel.xdk.device.hideSplashScreen ) // ...hideSplashScreen() is inside the base plugin intel.xdk.device.hideSplashScreen() ; } } ;

Répondre
Options du sujet
- S'abonner au fil RSS
- Marquer le sujet comme nouveau
- Marquer le sujet comme lu
- Placer ce Sujet en tête de liste pour l'utilisateur actuel
- Marquer
- S'abonner
- Page imprimable