Android で Async(doInBackground) タスクを実行しています。
タスクの進行状況バーを設定する必要があります。だから私はonPreExecuteでprogressDialogを表示しています、
ProgressDialog.show のシグネチャは Show(Context,Title,message) です
しかし、ここでのコンテキストは何でしょうか?
@Override
protected void onPreExecute()
{
progress = ProgressDialog.show(???, "Loading", "Please Wait");
}