Android Studio:如何设置webview加载和错误视图?

Android Studio: How to set a webview loading and error view?

我正在为我的学习目的开发一个应用程序,该应用程序包含一个导航抽屉和一些网络视图。 我的问题是当页面正在加载时,屏幕仍然很白而且很无聊。如果连接失败,丑陋的 "no connexion" 页面会显示我的主机地址。 我想设置一个加载页面或图像,另一个用于替代场景(连接失败,...)我尝试了一些解决方案,但没有一个适合我的代码。

这是片段 JAVA 和 XML 代码..

layout1_acceuil.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <WebView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/webView1"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

</RelativeLayout>​

menu1_acceuil.java

package xxxx.yyyyyy;

import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;

/**
 * Created by Malek Boubakri on 13/03/2015.
 */
public class menu1_accueil extends Fragment {
    View rootview;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle setInitialSavedState) {
        rootview = inflater.inflate(R.layout.layout1_accueil, container, false);
        //set up webview
        WebView webView1 = (WebView) rootview.findViewById(R.id.webView1);
        // Enable Javascript
        WebSettings webSettings = webView1.getSettings();
        webSettings.setJavaScriptEnabled(true);
        //load an URL
        webView1.loadUrl("http://myhost.tn");
        // Force links and redirects to open in the WebView instead of in a browser
        webView1.setWebViewClient(new WebViewClient());
        return rootview;
    }
}

可能我的问题对于一些天才来说很容易看出来,但我只是一个初学者,如果这个应用程序不 运行 它会严重影响我的成绩:'( 请 post 任何信息都可以帮助我和我会很感激。 (再次,我不得不提一下,我仍然是 android 开发的初学者,我的英语可能有点糟糕..)

您可以在使用 class WebViewClient 加载网页之前和之后执行任何操作。您可以覆盖 onPageStarted()、onPageFinished() 和 onReceivedError() 等方法。

这是 WebViewClient 的 android 开发人员站点,您可以在此处找到所有信息:http://developer.android.com/reference/android/webkit/WebViewClient.html