ProgresDialog を表示したいのですが、コードの何が問題なのかわかりません。ProgressDialog が表示されていません。任意のアイデアをお願いします。
imageBtnRouteStart.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
dialog = ProgressDialog.show(_activity, "", "Loading...", true, false);
new OtherActivity().SaveR(_id, _activity, true, true);
//** Launch the activity
Intent showContent = new Intent(_activity.getApplicationContext(),
NewActivity.class);
_activity.startActivity(showContent);
}
});