我已經嘗試了幾個教程,讓splascreen至少使用了由cordova提供的默認screen.png。科爾多瓦splashscreen不顯示
我編輯的XML在我appiclation路徑的根(例如:科爾多瓦/ MyApp的)添加到具有splashcreen所需的2個系顯示如下:
<?xml version='1.0' encoding='utf-8'?>
<widget id="fr.bacly.baclym" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>baclym</name>
<description>
Application Mobile du Bacly </description>
<author email="[email protected]" href="http://cordova.io">
Philippe Ihuel
</author>
<content src="index.html" />
<preference name="Orientation" value="portrait" />
<plugin name="cordova-plugin-whitelist" version="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<!-- you can use any density that exists in the Android project -->
<!-- <splash src="res/res-land-hdpi/screen.png" density="land-hdpi"/>
<splash src="res/res-land-ldpi/screen.png" density="land-ldpi"/>
<splash src="res/res-land-mdpi/screen.png" density="land-mdpi"/>
<splash src="res/res-land-xhdpi/screen.png" density="land-xhdpi"/>
<splash src="res/res-port-hdpi/screen.png" density="port-hdpi"/>
<splash src="res/res-port-ldpi/screen.png" density="port-ldpi"/>
<splash src="res/res-port-mdpi/screen.png" density="port-mdpi"/>
<splash src="res/res-port-xhdpi/screen.png" density="port-xhdpi"/> -->
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="30000" />
</widget>
我上與模擬S4的Android genymotion運行4.4.2,但它不會顯示除黑屏以外的任何內容。
有什麼建議嗎?
您已經添加了閃屏插件到您的項目答案下面的工作? –
@mudasserajaz:是 – Nightf
你在真實設備上測試過嗎?因爲你的代碼沒有任何問題。 –