关于AlertDialog.Builder(Context context)中所应传入的context

℡╲_俬逩灬. 提交于 2019-11-26 18:22:13

错误报告:

10-20 14:34:46.565: E/AndroidRuntime(23098): FATAL EXCEPTION: main
10-20 14:34:46.565: E/AndroidRuntime(23098): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application

问题分析:

在AlertDialog.Builder(Context context)方法中我传入了getApplicationContext(),一般情况下传入整个应用的上下文是没有问题的,但是AlertDialog的构建是需要一个父Activity的,因此必须传入一个准确的Activity的上下文。

解决办法:

将getApplicationContext()改为xxxActivity.this

转载于:https://www.cnblogs.com/AllenWen/p/4037195.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!