码迷,mamicode.com
首页 > Web开发 > 详细

如何给webview页面自定义404页面

时间:2015-01-09 12:08:31      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

//示例地图类
package com.can2do.doimobile.news;

import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.TextView;

import com.can2do.doimobile.R;
import com.can2do.doimobile.base.BaseUiWeb;
import com.can2do.doimobile.base.C;

public class UiNewsOne extends BaseUiWeb {
    
    private String tag = null;
    private WebView mWebViewMap;
    
    @Override
    public void onStart() {
        super.onStart();
        
        setContentView(R.layout.ui_news_one);
        
        Bundle params = this.getIntent().getExtras();
        tag = params.getString("tag");
        
        TextView titleText = (TextView) this
                .findViewById(R.id.main_top_title1);
        titleText.setText(tag);
                
        mWebViewMap = (WebView) findViewById(R.id.web_news_one);
        mWebViewMap.getSettings().setJavaScriptEnabled(true);
        mWebViewMap.setWebViewClient(new WebViewClient(){
        });
        mWebViewMap.setWebViewClient(new WebViewClient() {
             public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
             {
                 view.stopLoading();
                 view.clearView();
                 Message msg=handler.obtainMessage();//发送通知,加入线程
                 msg.what=1;//通知加载自定义404页面
                 handler.sendMessage(msg);//通知发送!
             }
             public boolean shouldOverrideUrlLoading(WebView view, String url)  
             {
                 view.loadUrl(url);
                 return true;
             }
        });
        mWebViewMap.loadUrl(C.news.news1);
        
        this.setWebView(mWebViewMap);
        this.startWebView();
    }
    
     protected Handler handler = new Handler(){
         public void handleMessage(Message message){
             switch (message.what) {
             case 1:
                 mWebViewMap.loadUrl("file:///android_asset/www/404/404.html");
                 break;
             }
         }
     };
         
}

 

如何给webview页面自定义404页面

标签:

原文地址:http://www.cnblogs.com/huidaoli/p/4212870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!