所以我的活动名为GameActivity.java
,在此活动中,我致电DialogAnswer.show()
,简单地在屏幕上显示一些图片。
java.lang.IllegalArgumentException: View not attached to window manager
at android.view.WindowManagerGlobal.findViewLocked(WindowManagerGlobal.java:402)
at android.view.WindowManagerGlobal.removeView(WindowManagerGlobal.java:304)
at android.view.WindowManagerImpl.removeView(WindowManagerImpl.java:79)
at android.app.Dialog.dismissDialog(Dialog.java:325)
at android.app.Dialog.dismiss(Dialog.java:307)
at pl.evelanblog.prawdaczyfalsz.screen.DialogAnswer$1.onFinish(DialogAnswer.java:36)
at android.os.CountDownTimer$1.handleMessage(CountDownTimer.java:118)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5328)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1102)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:869)
at dalvik.system.NativeStart.main(Native Method)
这是我的DialogAnswer.java
班级
public class DialogAnswer extends Activity {
private static ImageView resultImage;
private static Dialog dialog = null;
public static void show(Context context, boolean fCorrect) {
dialog = new Dialog(context, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
dialog.setContentView(R.layout.dialog);
resultImage = (ImageView) dialog.findViewById(R.id.result_image);
if (fCorrect)
resultImage.setImageResource(R.drawable.correct_image);
else
resultImage.setImageResource(R.drawable.incorrect_image);
dialog.show();
new CountDownTimer(700, 100) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
dialog.dismiss(); //this is line 36
}
}.start();
}
}
GameActivity.java
有时当我去另一个活动时,我会在帖子上面收到这样的错误。我不知道如何解决这个,它很难调试,因为它罕见的错误,但它存在。
答案 0 :(得分:27)
很多人可能在谷歌搜索这个,所以我可能把我的2p:
不幸的是,人们使用的示例isShowing()不会起作用,因为当视图分离时(活动已经消失),它仍然可以返回true。
如果你很懒,其他海报评论关于将它包装在try {}中也可以在/大多数/情境中工作(尽管有一些情况下系统可能会关闭它并且异常仍然会导致一个力 - 关闭你不能像在Android代码中那样进行try {}回合,而不是你的代码。
最佳解决方案是在活动结束/关闭时关闭对话框。如果您尝试关闭 后用户在您的异步任务正在运行时导航(或者,手机响铃并导航它们),那么您将获得ViewNotAttached异常。
答案 1 :(得分:18)
在以onDestroy()
或onStop()
方式解雇此类支票之前。您只是在不检查是否显示
if (mDialog!=null) {
if (mDialog.isShowing()) {
mDialog.dismiss();
}
}
答案 2 :(得分:4)
使用try语句。
new CountDownTimer(700, 100) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
try {
dialog.dismiss();
dialog = null;
} catch (Exception e) {
//TODO: Fill in exception
}
}
}.start();
答案 3 :(得分:2)
这样做
new CountDownTimer(700, 100) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
runOnUiThread(new Runnable() {
@Override
public void run() {
dialog.dismiss(); //this is line 36
}
});
}
}.start();
答案 4 :(得分:1)
使用try catch可能不是解决此问题的有效方法,因为可能导致内存泄漏; 对于这个问题,因为上下文被用作param,所以在使用代码dialog.dismiss之前,我们可以使用以下代码来保护:
public void onFinish() {
if{ctx instanceof Activity && !((Activity)ctx.isfinishing()){
dialog.dismiss(); //this is line 36
}
}
另外,可以使用另一种方法修补此崩溃 在活动中的onDestroy()函数中,添加代码:
protected void onDestroy() {
if(dialog != null){
dialog.dismiss();
dialog = null;
}
}