基本上我有一個啓動畫面,顯示用戶何時啓動應用程序。初始屏幕應該打開一個網站(稍後會顯示的網站),以便將所有字體和圖像下載到緩存中,以便在您第一次運行該應用程序時使所有內容都更流暢。 但你看到的只是一個白色的屏幕,代碼工作(測試它),但它顯示了一個白色的閃屏,而不是一個帶有徽標和一些文字的白色屏幕。啓動畫面完全白色?
這是代碼;
Splash.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#4A4A4A">
<ImageView
android:id="@+id/logo"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:src="@drawable/logo"
android:layout_gravity="center" />
<TextView
android:text="@string/loading"
android:layout_gravity="center"
android:textColor="#FFA500"
android:textSize="15dp"
android:typeface="normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<WebView
android:id="@+id/splashview"
android:layout_width="0px"
android:layout_height="0px"
android:layout_weight="0" />
</LinearLayout>
Splash.java
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class Splash extends Activity {
@Override
protected void onCreate(Bundle savedInstance) {
// TODO Auto-generated method stub
super.onCreate(savedInstance);
setContentView(R.layout.splash);
WebView webView = (WebView) findViewById(R.id.splashview);
webView.setWebChromeClient(new WebChromeClient());
webView.loadUrl("http://ngmat.site90.net/matsedel/");
webView.setWebViewClient(new WebViewClient() {
@Override
public void onPageFinished(WebView view, String url) {
Intent NGMat = new Intent("android.intent.category.SECONDARY");
startActivity(NGMat);
}
});
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
finish();
}
@Override
protected void onResume() {
super.onResume();
setContentView(R.layout.main);
}
}
我刪除了整個onResume,現在它工作!感謝你及時的答覆。但是現在,每次我啓動應用程序時,它都會顯示啓動畫面。我應該做一個布爾值來檢查飛濺是否已經顯示? – Unidan 2012-04-05 01:43:42
在SharedPreferences中保存一個布爾值是這樣做的一種方式,但正如@Colin所提到的,您不一定知道您已經緩存了正確的數據。例如,如果您在該站點關閉或者沒有連接的情況下加載應用程序,則可能會將標誌設置爲永不顯示啓動畫面,即使它從未緩存過所需的數據。不確定你的用例在這裏的細節,但我只想提一些要考慮的事情。 – Aldryd 2012-04-05 15:06:30