2

データベースからデータをダウンロードするアクティビティがあります。アクティビティがこの作業を行っている間、ProgressDialogで進行状況を表示したい.IProgressDialog.STYLE_HORIZONTALは実際の値を表示したいので使用します。ProgressDialogHandlerを表示する Activity を開始するために a を使用します。

Intent intent = new Intent(this, ProgressDialogActivity.class);

private Handler handler = new Handler(){
        @Override
        public void handleMessage(Message msg) {
            super.handleMessage(msg);
            if(msg.what == SET_PROGRESS){


                intent.putExtra("action", "show");
                intent.putExtra("progress", msg.arg1);
                intent.putExtra("max", msg.arg2);
                intent.putExtra("message", syncMessage);
                intent.putExtra("title", R.string.please_wait);

                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

                startActivity(intent);
            }
            else if(msg.what == SHOW_PROGRESS){             


                intent.putExtra("action", "show");
                intent.putExtra("title", syncMessage);

                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

                startActivity(intent);              
            }
            else if(msg.what == HIDE_PROGRESS){


                intent.putExtra("action", "hide");
                intent.putExtra("message", "");
                intent.putExtra("title", "");

                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

                startActivity(intent);

            }
        }
    };

ProgressDialogActivityは次のとおりです。

    public class ScreenProgressDialog extends Activity {

    ProgressDialog pd;
    Bundle extras;
    String action;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);


        extras = getIntent().getExtras();
        pd = new ProgressDialog(this);

        pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        pd.setCancelable(false);

        pd.setProgress(extras.getInt("progress"));  
        pd.setMax(extras.getInt("max"));
        pd.setMessage(extras.getCharSequence("message"));
        pd.setTitle(extras.getString("title"));

        action = extras.getString("action");

        if (action.equals("show")){
            pd.show();                  
        }
        else{
            pd.dismiss();
        }

    }


    @Override
    public void onDestroy() {
        super.onDestroy();
    }

}

メイン アクティビティがデータベースから新しいテーブルをダウンロードすると、新しいProgressDialogActivityHandlerが開始され、新しいアクティビティが表示されます。これは避けたいと思います。私の目的は、 ProgressDialogを正しい値で表示する 1 つのアクティビティのみを表示することです。(メイン アクティビティでProgressDialogを作成できません。別の方法を見つける必要があります。これはある種の宿題ですが、助けが必要です)。ありがとうございました!

4

2 に答える 2

1

AsyncTaskの使用について: ProgressDialog を追加
する方法 メソッドでダウンロード部分を実行し、doInBackgroundそれに応じて進行状況バーを更新することができonProgressUpdateます..

于 2012-07-12T07:47:36.437 に答える
1

AsyncTaskを使用してバックグラウンドでデータをフェッチし、ProgressDialogを表示でき ます。コードは次のとおりです。

// Get feed!
new ProgressTask().execute();



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

    private ProgressDialog dialog = new ProgressDialog(HomeActivity.this);

    /** progress dialog to show user that the backup is processing. */
    /** application context. */

    protected void onPreExecute() {
        this.dialog.setMessage("Please wait");
        this.dialog.show();
    }

    protected Boolean doInBackground(final String... args) {
        try {

            /**
             * Fetch the RSS Feeds from URL
             */
            Utilities.arrayRSS = objRSSFeed
                    .FetchRSSFeeds(Constants.Feed_URL);
            return true;
        } catch (Exception e) {
            Log.e("tag", "error", e);
            return false;
        }
    }

    @Override
    protected void onPostExecute(final Boolean success) {

        if (dialog.isShowing()) {
            dialog.dismiss();
        }

        if (success) {
            // display UI
            UpdateDisplay();
        }
    }
}
于 2012-07-12T08:25:39.113 に答える