Issue
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
Solution
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
Answered By - Vinod
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.