私はListActivity
を持っており、多くのデータをThread
で処理する必要があります。仕事がbackground
で行われている間に、Dialog
を表示したいと思います。ただし、ビューの読み込みが完了するまでDialog
は表示されません。私はこの方法を通常のactivity
で使用しています(Dialog
がポップアップし、ワーカーが開始し、ワーカーが終了し、Dialog
が終了します)。作業が完了すると、にメッセージが送信され、view
がロードされ、Dialog
が閉じられます。 、そのためListActivityとダイアログ
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
initViewProperties();
dialogCode = 0;
showDialog(dialogCode);
}
@Override
protected Dialog onCreateDialog(int id) {
int resID = getResources().getIdentifier(getCfrFile(), "raw", getPackageName());
progDialog = new ProgressDialog(this);
switch (dialogCode) {
case 0:
progDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progDialog.setMessage(getCurrentTitle());
break;
case 1:
progDialog.setMessage("Loading CFR");
break;
default:
break;
}
try {
// do the work here
xmlListRowFactoryHelper = new AcmListViewFactoryHelper(handler, resID, this, xpathBuilder(false), "title") ;
xmlListRowFactoryHelper.run();
} catch (Exception e) {
e.printStackTrace();
}
return progDialog;
}
final Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
int total = msg.getData().getInt("total");
progDialog.setProgress(total);
if (total <= 0){
xmlListRowFactoryHelper.setState(AcmTableRowFactoryHelper.DONE);
// load the view here
loadListView();
}
}
}