データベースからデータをダウンロードするアクティビティがあります。アクティビティがこの作業を行っている間、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を作成できません。別の方法を見つける必要があります。これはある種の宿題ですが、助けが必要です)。ありがとうございました!