簡體   English   中英

科爾多瓦android spalsh屏幕迅速消失

[英]cordova android spalsh screen faddes off quickly

我正在使用apache cordova創建一個android應用程序,並使用eclipse mars構建並運行該應用程序。 問題是spalsh屏幕消失得太快。 我希望它停留3000秒鍾,然后開始褪色,而從頭開始褪色。 也試圖消退,但沒有運氣。 這是我的配置文件。 請幫忙

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.example.eximapp7" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>Useful Addresses</name>
    <description>
        A sample Apache Cordova application that responds to the deviceready event.
    </description>
    <author email="dev@cordova.apache.org" href="http://cordova.io">
        Apache Cordova Team
    </author>
    <content src="index.html" />
    <plugin name="cordova-plugin-whitelist" spec="1" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <access origin="tel:*" launch-external="yes"/>
    <access origin="geo:*" launch-external="yes"/>
    <access origin="mailto:*" launch-external="yes"/>
    <access origin="sms:*" launch-external="yes"/>
    <access origin="market:*" launch-external="yes"/>
    <platform name="android">
        <allow-intent href="market:*" />
        <feature name="SocialSharing">
            <param name="android-package" value="nl.xservices.plugins.SocialSharing" />
        </feature>
        <preference name="FadeSplashScreen" value="false" />
    </platform>
    <platform name="ios">
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
    </platform>
    <engine name="android" spec="~5.2.1" />
    <plugin name="cordova-plugin-splashscreen" spec="~3.2.2" />
    <preference name="SplashMaintainAspectRatio" value="false" />
    <preference name="SplashScreenDelay" value="3000" />
    <preference name="FadeSplashScreen" value="false" />  
    <preference name="orientation" value="portrait" />
    <plugin name="cordova-plugin-geolocation" spec="~2.2.0" />
    <plugin name="cordova-plugin-x-socialsharing" spec="~5.1.1" />
</widget>

將啟動畫面延遲設置為6秒

<preference name="SplashScreenDelay" value="6000" />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM