の非同期タスクのために、自分のアプリの読み込みアクティビティにアクティビティを指定したいとします。Android非公開タスクの実行中にpreExecuteでアクティビティを開始しpostExecuteで終了します
preExecute
の間に起動され、postExecute
で終了しますか?
@Override
protected void onPreExecute()
{
startActivity(new Intent(SearchActivity.this,LoadingActivity.class));
}
@Override
protected void onPostExecute(String result)
{
// i want to finish loading activity here.
}
あなたはローダーダイアログなどでこれを行うことができます。アクティビティで行う必要はありません!! –
これは私の仕事の要件です –