当前位置: 代码迷 >> Android >> Dialog 出现的android.view.WindowManager$BadTokenException: Unable to add window错误
  详细解决方案

Dialog 出现的android.view.WindowManager$BadTokenException: Unable to add window错误

热度:38   发布时间:2016-05-01 13:45:05.0
Dialog 出现的android.view.WindowManager$BadTokenException: Unable to add window异常

Dialog异常:
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application

异常原因:
new AlertDialog.Builder(Context context)中的参数不能用getApplicationContext()获得的context,而必须使用Activity,因为只有一个Activity才能添加一个窗体。

解决办法:
例如 new AlertDialog.Builder(XXXActivity.this)

?

  相关解决方案