Android 'Unable to add window — token null is not for an application' exception

后端 未结 11 2087
名媛妹妹
名媛妹妹 2020-11-28 05:58

I get the following Android exception when I try to open a dialog. Can someone please help me understand what is going on and how can I fix this problem?

and         


        
11条回答
  •  情歌与酒
    2020-11-28 06:45

    You can continue to use getApplicationContext(), but before use, you should add this flag: dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT), and the error will not show.

    And don't forget to add permission:

    
    

提交回复
热议问题