I want to show a custom dialog in a webview app when there is no connection to the Internet. How can I check the Internet connection and after that call a dialog?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can use ConnectivityManager to check if there is an internet connection, and you can show a Toast AlertDialog message to the user.

See also: AlertDialog.Builder

Edit: Here is an example of how to do this with a Toast message:

ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo info = cm.getActiveNetworkInfo();
if (info != null) {
    if (!info.isConnected()) {
        Toast.makeText(this, "Please check your wireless connection and try again.", Toast.LENGTH_SHORT).show();
    }
}
else {
    Toast.makeText(this, "Please check your wireless connection and try again.", Toast.LENGTH_SHORT).show();
}
link|improve this answer
Do you have any example how to do this? – Eljas Aug 2 '11 at 10:48
@Eljas, I've edited the post and added some sample code. – Phil Aug 2 '11 at 12:45
When I try that example my app works fine if I have internet connection but if there is not connection I get force close? – Eljas Aug 2 '11 at 21:18
Sorry. I should have added another check to be sure that info is not null. See my revised code. – Phil Aug 2 '11 at 22:18
Thank you! Now it works 100%. – Eljas Aug 2 '11 at 22:47
feedback

As Phil mentioned, the ConnectivityManager is the way to detect the internet connection on n Android app. However, if you don't want to use that and instead you want to have your app entirely in HTML, you could always show a locally available HTML page on your application. This local HTML could try to check if there is a connection to your server, and, if so, direct the user to your online page. If there is no connection, the local HTML page can show useful offline data, or just a message saying "Sorry, no internet connection."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.