0

私は取り除きたい小さなエラーがあります。このエラーが発生する理由がわかりません。シミュレーターとテスト電話は完璧に動作します! 私が持っている唯一の情報は、Android マーケットのアプリ ユーザーから入手した Stacktraces です。

java.lang.IllegalArgumentException: View not attached to window manager
at android.view.WindowManagerImpl.findViewLocked(WindowManagerImpl.java:355)
at android.view.WindowManagerImpl.removeView(WindowManagerImpl.java:200)
at android.view.Window$LocalWindowManager.removeView(Window.java:432)
at android.app.Dialog.dismissDialog(Dialog.java:278)
at android.app.Dialog.access$000(Dialog.java:71)
at android.app.Dialog$1.run(Dialog.java:111)
at android.os.Handler.handleCallback(Handler.java:587)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
at dalvik.system.NativeStart.main(Native Method

最初に、進行状況ダイアログがまだ閉じられていないときにユーザーが電話の向きを変更すると、以下のコードがアプリケーションをクラッシュさせると考えました。android:screenOrientation="portrait" を追加して、向きが変わらないようにしました。しかし、エラーはまだ生きています。

誰でも私を助けることができますか?これは私が使用するコード例です:

final ProgressDialog pd = ProgressDialog.show(this, "Title", "Message",  true, false);

new Thread(new Runnable(){
public void run(){
    makeHttpRequest();
    pd.dimiss();
}
}).start();
4

3 に答える 3

0

向きを縦向きに制限しても、たとえばロック画面が横向きになり、アクティビティが再作成される場合があります。ダイアログが確実に閉じられるようにするには、次のようにします。

if (dialog != null && dialog.isShowing()) {
    dialog.cancel();
}

また、アクティビティが破棄されたときにダイアログを閉じる必要があります。

@Override
protected void onDestroy() {    
    if (dialog != null && dialog.isShowing()) {
        dialog.cancel();
    }

    super.onDestroy();
}

これで問題は解決しました-役に立てば幸いです:)

于 2013-11-27T10:05:02.973 に答える
0

あなたandroid:screenOrientation="portrait"は活動やアプリケーションに入れましたか? また、この例外は、ダイアログが適切に閉じられていない場合に発生します。アクティビティが停止した場合は、onPause/onStop でダイアログの閉じを処理する必要があります。私は一度この問題に直面しました。

于 2011-05-11T13:52:30.803 に答える
-1

このコードを試してください:

 update.setTitle(getResources().getString(R.string.app_name));
                update.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
                update.setCancelable(true);
                update.setMax(100);
                update.show();


                Thread background = new Thread (new Runnable() {
                       public void run() {
                           try {
                               // enter the code to be run while displaying the progressbar.
                               //
                               // This example is just going to increment the progress bar:
                               // So keep running until the progress value reaches maximum value
                               while (update.getProgress()<= update.getMax()) {
                                   // wait 500ms between each update
                                   Thread.sleep(500);

                                   // active the update handler
                                   progressHandler.sendMessage(progressHandler.obtainMessage());
                               }

                           } catch (java.lang.InterruptedException e) {
                               // if something fails do something smart
                           }
                       }
                    });// start the background thread
                    background.start();
                    if(update.getProgress()== 100)
                       {
                           update.dismiss();
                       }
                }




        })
        .setNegativeButton("No", new DialogInterface.OnClickListener(){
            @Override
            public void onClick(DialogInterface dialog, int which) {
                // TODO Auto-generated method stub

            }
        })
        .show();
于 2011-05-11T13:43:17.353 に答える