バンドルを介して ProgressDialog オブジェクトを渡したい状況に陥っています。
ProgressDialog PD = new ProgressDialog();
PD.setMessage("My message");
PD.setCanceledOnTouchOutside(false);
PD.show();
// some other code
Bundle bundle = new Bundle();
bundle.putString("someVal1", textValue);
bundle.putInt("someVal2", integer_name);
bundle.put..... // pass PD here?
ウェブを検索しましたが、有用な回答が見つかりませんでした。