Android 使用弹出对话框,报Unable to add window错误

今天在使用Android弹出对话框的时候,报了一个unable to add window错误,我的代码如下

new AlertDialog.Builder(getApplicationContext()).setTitle("提示").setMessage("你确定要删除么?")

				.setPositiveButton("确定", new DialogInterface.OnClickListener() {

					public void onClick(DialogInterface dialog, int which) {

					}

				  }

				}).setNegativeButton("取消",

					       new DialogInterface.OnClickListener() {

			           @Override

			           public void onClick(DialogInterface dialog, int which) {

			                dialog.cancel();

			           }

			       }).show();

仔细看代码,一切都很正常,也没找到什么错误,但是我们忽略了只有Activity才能添加window,所以上面的代码如果放在onCreate()方法中,我们把 Builder(getApplicationContext())改成Builder(this)即可,如果我们是在其他方法中使用,就不能使用getApplicationContext(),而应该使用Builder(Activity.this)

 

 
  

 



                            

你可能感兴趣的:(android)