I am loading url in android webview using below code
webviewShowPost.loadUrl(URL);
I want to check if no data connectivity available then webview instead of showing blank view, I can display Toast of no connectivity.
Thanks
I am loading url in android webview using below code
webviewShowPost.loadUrl(URL);
I want to check if no data connectivity available then webview instead of showing blank view, I can display Toast of no connectivity.
Thanks
public static boolean isOnline(Context context) {
try {
ConnectivityManager cm = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
if (cm.getActiveNetworkInfo().isConnectedOrConnecting()) {
URL url = new URL("http://www.google.com.pk/");
HttpURLConnection urlc = (HttpURLConnection) url
.openConnection();
urlc.setConnectTimeout(1000); // mTimeout is in seconds
urlc.connect();
if (urlc.getResponseCode() == 200) {
return true;
} else {
return false;
}
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return false;
}
Please try this
webView.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedError(WebView view, int errorCode,
String description, String failingUrl) {
// TODO Auto-generated method stub
super.onReceivedError(view, errorCode, description, failingUrl);
}
@Override
public void onPageFinished(WebView view, String url) {
// TODO Auto-generated method stub
super.onPageFinished(view, url);
}
});
you can get the Progress Percentage value in above webview method
mWebView.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress)
{
//Make the bar disappear after URL is loaded, and changes string to Loading...
//Make the bar disappear after URL is loaded
System.out.println("Value of progress"+progress);
pbweb.setProgress(progress);
if(progress == 100)
pbweb.setVisibility(View.GONE);
}
});
below code in progress is value of progerss
You want to check if there is network connectivity before loading the page, which means you want to do this: https://stackoverflow.com/a/2001824/960048
you can always use WebViewClient for this purpose .
web.setWebViewClient(new WebViewClient(){
public void onReceivedError(WebView view, int errorCode, String description,String failingUrl) {
Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
}
});