Android - 无法添加窗口 - 令牌无效;您的活动正在运行吗?

Md *_*min 5 android android-alertdialog

我正在尝试展示AlertDialog来自不同线程的内容。我在 firebase 上收到以下崩溃消息: android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@415924 is not valid; is your activity running?

尝试检查上下文是否处于活动状态,但问题仍然存在。

if(!((Activity)context).isFinishing()) {
    alertDialog.show();
}
Run Code Online (Sandbox Code Playgroud)