Note that there are some explanatory texts on larger screens.

plurals
  1. POPhoneGap splash screen
    primarykey
    data
    text
    <p>Is there anybody can help me with splash screen. I created my index.html using jquery mobile , everthing is fine but i need a splash screen.</p> <pre class="lang-html prettyprint-override"><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Mobilizm&lt;/title&gt; &lt;meta charset="utf-8"&gt; &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt; &lt;link href="css/jquery.mobile-1.3.2.min.css" rel="stylesheet" /&gt; &lt;/head&gt; &lt;body onload="onLoad()"&gt; &lt;div data-role="page"&gt; &lt;div data-theme="b" data-role="header"&gt; &lt;h3&gt;Mobilizm&lt;/h3&gt; &lt;/div&gt; &lt;div data-role="content"&gt; &lt;div data-role="fieldcontain"&gt; &lt;ul data-role="listview"&gt; &lt;li&gt;&lt;a href="Reservation.html"&gt;Rezervasyon Yap&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Rezervasyonlarımı Gör&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Bilgilerim&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;div data-theme="b" data-role="footer" data-position="fixed"&gt; &lt;h3&gt;Mobilizm&lt;/h3&gt; &lt;/div&gt; &lt;/div&gt; &lt;script src="js/jquery.js"&gt;&lt;/script&gt; &lt;script src="js/jquery.mobile-1.3.2.js"&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I added my config.xml file but when ı open my application , there is no splash screen</p> <p>Any ideas?</p> <p>Config XML :</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;widget xmlns = "http://www.w3.org/ns/widgets" xmlns:gap = "http://phonegap.com/ns/1.0" id = "HelloWorld.Application" version = "1.0.0" versionCode = "1"&gt; &lt;name&gt;Mobilizm&lt;/name&gt; &lt;description&gt; Mobilizm mobile application for android &lt;/description&gt; &lt;author href="#" email="polattt@gmail.com"&gt; Daniele Veneroni &lt;/author&gt; &lt;!-- SPLASH SCREENS --&gt; &lt;gap:splash src="css/splash/splash.png" /&gt; &lt;!-- default 320x480 pixels --&gt; &lt;!--&lt;gap:splash src="css/splash/ios/splash320x480.png" gap:platform="ios" width="320" height="480" /&gt; --&gt;&lt;!-- iPhone 3G, 3GS, iPod Touch 2, 3 --&gt;&lt;!-- &lt;gap:splash src="css/splash/ios/splash640x960.png" gap:platform="ios" width="640" height="960" /&gt; --&gt;&lt;!-- iPhone 4, 4S, iPod Touch 4 --&gt;&lt;!-- &lt;gap:splash src="css/splash/ios/splash640x1136.png" gap:platform="ios" width="640" height="1136" /&gt; --&gt;&lt;!-- iPhone 5, iPod Touch 5 --&gt;&lt;!-- &lt;gap:splash src="css/splash/ios/splash1024x768.png" gap:platform="ios" width="1024" height="768" /&gt; --&gt;&lt;!-- iPad 1, 2, iPad mini --&gt;&lt;!-- &lt;gap:splash src="css/splash/ios/splash768x1024.png" gap:platform="ios" width="768" height="1024" /&gt; --&gt;&lt;!-- iPad 1, 2, iPad mini --&gt;&lt;!-- &lt;gap:splash src="css/splash/ios/splash2048x1496.png" gap:platform="ios" width="2048" height="1496" /&gt; --&gt;&lt;!-- iPad 3, 4 --&gt;&lt;!-- &lt;gap:splash src="css/splash/ios/splash1536x2008.png" gap:platform="ios" width="1536" height="2008" /&gt; --&gt;&lt;!-- iPad 3, 4 --&gt; &lt;gap:splash src="css/splash/android/ldpi.png" gap:platform="android" gap:density="ldpi" /&gt; &lt;!-- 200x320 --&gt; &lt;gap:splash src="css/splash/android/mdpi.png" gap:platform="android" gap:density="mdpi" /&gt; &lt;!-- 320x480 --&gt; &lt;gap:splash src="css/splash/android/hdpi.png" gap:platform="android" gap:density="hdpi" /&gt; &lt;!-- 480x800 --&gt; &lt;gap:splash src="css/splash/android/xhdpi.png" gap:platform="android" gap:density="xhdpi" /&gt; &lt;!-- 720x1280 --&gt; &lt;!-- GENERAL PREFERENCES --&gt; &lt;preference name="phonegap-version" value="2.9.0" /&gt; &lt;preference name="orientation" value="default" /&gt; &lt;preference name="target-device" value="universal" /&gt; &lt;preference name="fullscreen" value="true" /&gt; &lt;!-- remove the upper bar on iOS and Android --&gt; &lt;!-- iOS PREFERENCES --&gt; &lt;preference name="webviewbounce" value="false" /&gt; &lt;preference name="prerendered-icon" value="true" /&gt; &lt;preference name="stay-in-webview" value="false" /&gt; &lt;preference name="ios-statusbarstyle" value="black-opaque" /&gt; &lt;preference name="detect-data-types" value="false" /&gt; &lt;preference name="exit-on-suspend" value="false" /&gt; &lt;preference name="show-splash-screen-spinner" value="false" /&gt; &lt;preference name="auto-hide-splash-screen" value="true" /&gt; &lt;!-- if set to false, the splash screen must be hidden using a JavaScript API --&gt; &lt;!-- ANDROID PREFERENCES --&gt; &lt;preference name="android-minSdkVersion" value="7" /&gt; &lt;!-- minimum Android 2.1 --&gt; &lt;preference name="android-installLocation" value="auto" /&gt; &lt;preference name="splash-screen-duration" value="3000" /&gt; &lt;preference name="load-url-timeout" value="20000" /&gt; &lt;!-- BLACKBERRY PREFERENCES --&gt; &lt;preference name="disable-cursor" value="false" /&gt; &lt;!-- PHONEGAP API FEATURES PREFERENCES --&gt; &lt;preference name="permissions" value="none"/&gt; &lt;/widget&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload