基本上我有一个启动屏幕,显示用户何时启动应用程序。初始屏幕应该打开一个网站(稍后将显示的网站)以下载所有字体和图像以缓存,以使您第一次运行应用程序时一切运行更顺畅。但是你现在看到的只是一个白屏,代码可以工作(经过测试),但它显示的是一个白色的闪屏,而不是一个带有徽标和一些文字的闪屏。
这是代码;
飞溅.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>
飞溅.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);
}
}