0

AIMリストビューといくつかのボタンといくつかの追加要素を備えたアクティビティがあります。私が望むのは、アクティビティの開始時にこのリスト ビューにカスタム アダプターを設定することです。このカスタム アダプターの生成には時間がかかるため、進行状況バーを追加して、ユーザーが無反応の画面を見つめることを余儀なくされないようにしました。完了したら、このプログレス バーを閉じて、本来あるべきアクティビティを表示します。

私がしたこと - 「コード

public void onCreate(Bundle savedInstanceState) {
...
// all initialization done here properly
new ProgressTask(this).execute("");
}

public class ProgressTask extends AsyncTask<String, Void, Boolean> {

    public ProgressTask(ScanInboxActivity activity) {
        dialog = new ProgressDialog(activity.getApplicationContext());
        dialog.setIndeterminate(true);
        dialog.setCancelable(false);
    }

        /** progress dialog to show user that the backup is processing. */
    private ProgressDialog dialog;

    protected void onPreExecute() {
        this.dialog.setMessage("Scan start");
        this.dialog.show();
    }

    @Override
    protected void onPostExecute(final Boolean success) {
        if (dialog.isShowing()) {
            dialog.dismiss();               
        }
        populateList();
    }

    protected Boolean doInBackground(final String... args) {
        init(); // tasks to be performed- no error here
        scanSms(); // tasks to be performed- no error here
        return true;
    }
}

次の例外が発生します。

FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example/com.example.ScanInboxActivity}: android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
at android.app.ActivityThread.access$2300(ActivityThread.java:125)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
at android.os.Handler.dispatchMessage(Handler.java:99)
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:868)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
at android.view.ViewRoot.setView(ViewRoot.java:509)
at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
at android.app.Dialog.show(Dialog.java:241)
at com.example.ScanInboxActivity$ProgressTask.<init>(ScanInboxActivity.java:212)
at com.example.ScanInboxActivity.onCreate(ScanInboxActivity.java:59)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
... 11 more

これを書くときは注意してください

public void onCreate(Bundle savedInstanceState) {
// all initialization done here properly
init();
scanSms();
populateList();
}

このアクティビティを開始するアクティビティが一瞬ハングしますが、問題なく動作します。私はこれが起こることを望んでいません。

何をすべきか提案してください。前もって感謝します。

EDIT scanSms() はコンテキストを使用します。アプリケーション周辺の他のアクティビティからも呼び出される scanSms() で呼び出される関数 (別のクラス) で使用されるため、コンテキストの使用を排除できません。

4

3 に答える 3

0

これを試して:

public ProgressTask(ScanInboxActivity activity) {
        dialog = new ProgressDialog(activity);
        dialog.setIndeterminate(true);
        dialog.setCancelable(false);
    }

    protected void onPreExecute() {
        this.dialog.setMessage("Scan start");
        this.dialog.show();
    }

編集:

public class ProgressTask extends AsyncTask<String, Void, Boolean> {

        /** progress dialog to show user that the backup is processing. */
        private ProgressDialog dialog;

        public ProgressTask(MainMenuActivity activity) {
            dialog = new ProgressDialog(activity);
            dialog.setIndeterminate(true);
            dialog.setCancelable(false);
        }

        protected void onPreExecute() {
            this.dialog.setMessage("Scan start");
            this.dialog.show();
        }

        @Override
        protected void onPostExecute(final Boolean success) {
            if (dialog.isShowing()) {
                dialog.dismiss();               
            }
            //populateList();
        }

        protected Boolean doInBackground(final String... args) {
            //init(); // tasks to be performed- no error here
            //scanSms(); // tasks to be performed- no error here
            try {
                Thread.sleep(10000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            return true;
        }
    }
于 2013-06-18T07:49:09.250 に答える
-2
  class asytask extends AsyncTask<String, Integer, String>
        {
            ProgressDialog dialog ;
            @Override
            protected void onPreExecute() {
                // TODO Auto-generated method stub
                super.onPreExecute();
                dialog  = new ProgressDialog(getApplicationContext());
                dialog.show();
            }
            @Override
            protected String doInBackground(String... params) {
                // TODO Auto-generated method stub

//use your backgournd process
                return null;
            }
            @Override
            protected void onPostExecute(String result) {
                // TODO Auto-generated method stub
                super.onPostExecute(result);
                dialog.dismiss();

 //  visible process
            }
        }
于 2013-06-18T07:47:07.697 に答える