|
|
(5 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| SplashScreens are displayed when your app starts. The way they work depends on the platform you are running on.
| | '''''Starting with AppStudio 8, SpashScreens are created automatically. |
| | | ''''' |
| == Web Apps ==
| |
| | |
| === iOS===
| |
| | |
| Updated documentation is pending, due to implementation of PWAs.
| |
| | |
| === Android ===
| |
| | |
| Updated documentation is pending, due to implementation of PWAs.
| |
| | |
| == PhoneGap Apps ==
| |
| | |
| The default PhoneGap SplashScreen must be set in Project Properties. The file needs to be in the top level of the project folder. PNG images work best: the filename should also be added to the Manifest property.
| |
| | |
| Put the main splash screen file name into 'manifest' in Project Properties: i.e. 320x426.png
| |
| Also, in Project Properties, put that same file name into PhoneGap splashscreen.
| |
| | |
| The same file structure can be used as in Web App for the rest of the splashscreens. Here's how it could look:
| |
| | |
| [[File:Splashscreen1.png]]
| |
| | |
| The Web App images can be in the same folder.
| |
| | |
| === Android ===
| |
| | |
| A similar file structure is needed as for web apps, but the screen sizes are different:
| |
| | |
| Create a folder in your Splash folder called android. Add the structure returned by Zeppelin.
| |
| | |
| Add the following lines to the PhoneGap configxml property:
| |
| <pre>
| |
| <!-- Splash Screens -->
| |
| | |
| <preference name='SplashScreenDelay' value='2000' />
| |
| <preference name='AutoHideSplashScreen' value='true' />
| |
| <gap:splash src='{splashscreen}'/>
| |
| <gap:plugin name='cordova-plugin-splashscreen' source='npm' />
| |
| | |
| <platform name='android'>
| |
| <splash src='splash/android/res-long-land-hdpi/splash.png' qualifier='long-land-hdpi' />
| |
| <splash src='splash/android/res-long-land-ldpi/splash.png' qualifier='long-land-ldpi' />
| |
| <splash src='splash/android/res-long-land-mdpi/splash.png' qualifier='long-land-mdpi' />
| |
| <splash src='splash/android/res-long-land-xhdpi/splash.png' qualifier='long-land-xhdpi' />
| |
| <splash src='splash/android/res-long-land-xxhdpi/splash.png' qualifier='long-land-xxhdpi' />
| |
| <splash src='splash/android/res-long-land-xxxhdpi/splash.png' qualifier='long-land-xxxhdpi' />
| |
| <splash src='splash/android/res-long-port-hdpi/splash.png' qualifier='long-port-hdpi' />
| |
| <splash src='splash/android/res-long-port-ldpi/splash.png' qualifier='long-port-ldpi' />
| |
| <splash src='splash/android/res-long-port-mdpi/splash.png' qualifier='long-port-mdpi' />
| |
| <splash src='splash/android/res-long-port-xhdpi/splash.png' qualifier='long-port-xhdpi' />
| |
| <splash src='splash/android/res-long-port-xxhdpi/splash.png' qualifier='long-port-xxhdpi' />
| |
| <splash src='splash/android/res-long-port-xxxhdpi/splash.png' qualifier='long-port-xxxhdpi' />
| |
| <splash src='splash/android/res-notlong-land-hdpi/splash.png' qualifier='notlong-land-hdpi' />
| |
| <splash src='splash/android/res-notlong-land-ldpi/splash.png' qualifier='notlong-land-ldpi' />
| |
| <splash src='splash/android/res-notlong-land-mdpi/splash.png' qualifier='notlong-land-mdpi' />
| |
| <splash src='splash/android/res-notlong-land-xhdpi/splash.png' qualifier='notlong-land-xhdpi' />
| |
| <splash src='splash/android/res-notlong-land-xxhdpi/splash.png' qualifier='notlong-land-xxhdpi' />
| |
| <splash src='splash/android/res-notlong-land-xxxhdpi/splash.png' qualifier='notlong-land-xxxhdpi' />
| |
| <splash src='splash/android/res-notlong-port-hdpi/splash.png' qualifier='notlong-port-hdpi' />
| |
| <splash src='splash/android/res-notlong-port-ldpi/splash.png' qualifier='notlong-port-ldpi' />
| |
| <splash src='splash/android/res-notlong-port-mdpi/splash.png' qualifier='notlong-port-mdpi' />
| |
| <splash src='splash/android/res-notlong-port-xhdpi/splash.png' qualifier='notlong-port-xhdpi' />
| |
| <splash src='splash/android/res-notlong-port-xxhdpi/splash.png' qualifier='notlong-port-xxhdpi' />
| |
| <splash src='splash/android/res-notlong-port-xxxhdpi/splash.png' qualifier='notlong-port-xxxhdpi' />
| |
| </platform>
| |
| </pre>
| |
| | |
| === iOS ===
| |
| A similar file structure is needed as for web apps, but the screen sizes and file names are different. See the file names and sizes as they appear in the configxml property. Create files of your own with the same names and sizes.
| |
| | |
| Assuming you want all sizes, add the following lines to the PhoneGap configxml property:
| |
| <pre>
| |
| <!-- Splash Screens -->
| |
| <preference name='SplashScreenDelay' value='2000' />
| |
| <preference name='AutoHideSplashScreen' value='true' />
| |
| <gap:splash src='{splashscreen}'/>
| |
| <gap:plugin name='cordova-plugin-splashscreen' source='npm' />
| |
| | |
| <platform name = "ios">
| |
| <splash src='splash/ios/Default.png' width='320' height='480' />
| |
| <splash src='splash/ios/Default@2x.png' width='640' height='960' />
| |
| <splash src='splash/ios/Default-568h@2x.png' width='640' height='1136' />
| |
| <splash src='splash/ios/Default-667h@2x.png' width='750' height='1334' />
| |
| <splash src='splash/ios/Default-Portrait.png' width='768' height='1024' />
| |
| <splash src='splash/ios/Default-Landscape.png' width='1024' height='768' />
| |
| <splash src='splash/ios/Default-Portrait@2x.png' width='1536' height='2048' />
| |
| <splash src='splash/ios/Default-Landscape@2x.png' width='2048' height='1536' />
| |
| <splash src='splash/ios/Default-Portrait-736h@3x.png' width='1242' height='2208' />
| |
| <splash src='splash/ios/Default-Landscape-736h@3x.png' width='2208' height='1242' />
| |
| </platform>
| |