onDestroy()中的AsyncTask未被执行

时间:2013-05-21 11:24:40

标签: android android-asynctask ondestroy

我希望在应用程序被销毁时向服务器发送注销信息。

以下是代码:

@Override
protected void onDestroy() {
    try {
        Log.i("myApp", "Activity destroyed");
        SharedPreferences prefs1 = getSharedPreferences("com.my.app", Context.MODE_PRIVATE);
        Log.i("myApp", "step1");
        String response;
        Log.i("myApp", "step2");
        response = HttpPOSTer.logout(EventCodes.LOGOUT, LOGOUT_EVENTCODE, prefs.getString("sessionID", "null"));
        Log.i("myApp", "step3");
        if (response.equals("logout")) {
            Log.i("myApp", "logged out succesfully");
        } else {
            Log.i("myApp", "couldn't perform logout");
        }
        prefs1.edit().clear().commit();
    }
    catch (InterruptedException e) {
        e.printStackTrace();
    } 
    catch (ExecutionException e) {
        e.printStackTrace();
    }   
    super.onDestroy();  
}

但是当我从主页按钮的长按菜单关闭应用程序时,这是日志:

enter image description here

我甚至不能在这里调试。我放置了断点,但在调试时它永远不会被触发。

是否有任何原因,为什么AsyncTask无法从onDestroy()调用?

1 个答案:

答案 0 :(得分:0)

在onDestroy()中使用asynctask不是一个好主意,而是可以有一个扩展IntentService的活动,并从onDestroy调用该活动