2014-03-06 56 views
0

我已經開始AsyncTask來解碼Button單擊文件中的內容。 AsyncTask運行良好,現在我按回家按鈕。 Activity進入onStop()狀態。現在我的AsyncTask會發生什麼情況,它會在onStop()狀態下運行還是停止?Activity的onStop()狀態中的AsyncTask狀態

+0

請參閱http://stackoverflow.com/questions/2531336/asynctask-wont-stop-even-when-the-activity-has-destroyed –

+1

它會繼續運行 – mach

回答

1

不,它不能。您的活動已停止您的AsyncTask將繼續。如果你想停止它,你必須取消你的AsyncTask。