Domanda

how can add my own error page replacing default error page "webpage not available" when there no internet connection available. like below image http://i.stack.imgur.com/OgS7o.jpg

È stato utile?

Soluzione

i got solution by adding below code

mWebView.setWebViewClient(new MyWebViewClient()
  {
    public void onReceivedError(WebView webview, int i, String s, String s1)
  {
      mWebView.loadUrl("file:///android_asset/error.html");
  }
   });

put your own html error page in assets folder

Altri suggerimenti

Simply apply Broadcast receiver and register Network Connection event when event rising according to there status redirect your page.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top