アクティビティをロードするときにProgressDialogを表示しようとしていますが、表示されません。
これがActivityonCreateで呼び出されるメソッドです
private void loadBuilding(String[] b) {
ProgressDialog pd = new ProgressDialog(this);
pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pd.setMax(6);
pd.setTitle(R.string.loading);
pd.show();
LoadBuilding lb = new LoadBuilding();
lb.initialize(this, pd);
lb.execute(b);
try {
lb.get();
} catch (Exception e) {
e.printStackTrace();
}
pd.dismiss();
if (building == null)
showError();
}
LoadBuildingは、建物を読み込んで進行状況を設定するAsyncTaskです。
ありがとうございます。