I simply want to print an alert on the screen if there is no connection.
Here is what I did in my class that extends Activity.
if(isOnline()) {
// do stuff..
} else {
Builder builder = new AlertDialog.Builder(getApplicationContext());
builder.setMessage("No connection.");
builder.setCancelable(true);
AlertDialog dialog = builder.create();
dialog.show();
}
Then I tried to launch it with Debug, and got the following error :
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application


