2012-10-21 76 views
4

我已爲Android應用程序添加了啓動屏幕。它會顯示,但在顯示啓動畫面後會顯示兩秒鐘的黑屏。適用於Android應用程序的黑色屏幕

我該如何解決這個問題?

+0

你固定在這個您的問題?任何解決方案謝謝 – 1myb

回答

1

根據您的標籤,我認爲您面臨Android Phonegap應用的問題。

您必須關閉設備上的啓動畫面,而不是在loadUrl方法中給出特定的時間。

代碼段:

super.setIntegerProperty("splashscreen", R.drawable.splash); // Display splash screen for android 
this.setIntegerProperty("loadUrlTimeoutValue", 70000); 
super.loadUrl("file:///android_asset/www/index.html",10000);// Give max time here 

隱藏啓動畫面的PhoneGap onDeviceReady方法:

document.addEventListener("deviceready", onDeviceReady, false); 

    // Cordova is ready 
    // 
    function onDeviceReady() { 
     cordova.exec(null, null, "SplashScreen", "hide", []) 

    } 
+0

我在哪裏放置代碼段? –