Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

3 Answers

up vote 2 down vote accepted

use

 Builder builder =  new AlertDialog.Builder(Your_Current_Activity.this);

instead of

 Builder builder =  new AlertDialog.Builder(getApplicationContext());

because you will need to pass Current Activity Context to show AlertDialog instead of Application Context

share|improve this answer
Works perfectly, thanks. – Rob Jan 30 at 12:39
@Rob : Glad I could help. – ρяσѕρєя K Jan 30 at 12:49

try to use classname.this other than getApplicationContext() this some time cause issues

if(isOnline()) { 
    // do stuff..
} else {
    Builder builder =  new AlertDialog.Builder(getApplicationContext());
    builder.setMessage("No connection.");
    builder.setCancelable(true);
    AlertDialog dialog = builder.create();
    dialog.show();
}
share|improve this answer

Use yourActivityName.this instead of getApplicationContext();

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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