android.view.WindowManager $ BadTokenException与Dialog和Context相关

时间:2013-06-11 14:24:16

标签: android android-activity android-context android-windowmanager

我在崩溃报告中收到此错误android.view.WindowManager$BadTokenException。在某些设备上,它只报告异常,但不会使应用程序崩溃,其他设备会崩溃。

这与应用程序显示对话框的方式有关。

其他答案表明正在使用错误的context,就像全局一样,但在我的情况下,我没有这样做,我将我的活动的上下文传递给另一个对象的方法。

public class Utils {

包含方法

public static void noConnection(Context context){
    final CustomAlertDialog alert = new CustomAlertDialog(context, context.getString(R.string.ErrorPastTense), context.getString(R.string.ErrorInternet), context.getString(R.string.OkButton), null);

    View.OnClickListener listener = new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            int id = v.getId();
            switch(id){
                case R.id.alertConfirm:
                    alert.dismiss();
                    break;
                default:
                    break;
            }
        }
    };
    alert.setListener(listener);
    alert.show();
}

由我的活动中的方法调用,如Utils.noConnection(myActivity.this);

错误日志显示在alert.show()

处发生的异常

为什么呢?以及如何避免

1 个答案:

答案 0 :(得分:1)

您确定要从UI线程显示对话框吗?尝试类似:

Handler handler = new Handler();
handler.post(new Runnable() {
    @Override
    public void run() {
        alert.show()
    }
});