如果没有连接,我只想在屏幕上打印警报。
这是我在课堂上所做的扩展 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();
}
然后我尝试使用Debug启动它,并得到以下错误:
android.view.WindowManager$BadTokenException: 无法添加窗口 -- 令牌 null 不适用于应用程序