1

一旦用户退出应用程序,我正在尝试删除数据库中的特定注册表。对于那个问题,我调用了一个 IntentService,它在应用程序 ID 被破坏时理论上运行。问题是,尽管此意图没有按预期工作并且注册表没有被删除。如果您可以提供帮助,这是代码。意向服务:

public class FinIntentService extends IntentService{
    String levelstring = "22";
    int pid;
    static String pids;
    BroadcastReceiver batteryReceiver = null;
    String url = "10.0.0.13";
    private static String url_crear = "http://10.0.0.13/subida/create_candidato.php";
    private static final String url_delete = "http://10.0.0.13/subida/delete_candidato.php";
    JSONParser jsonParser = new JSONParser();

    @SuppressLint("NewApi")
    static String device_id = Build.SERIAL;
    static String PDA = device_id.substring(device_id.length() - 6);


            public FinIntentService() {
                    super("FinIntentService");
                }

            @Override
            protected void onHandleIntent(Intent intent)
            {

               int success;



                    try {


                        List<NameValuePair> params = new ArrayList<NameValuePair>();
                        params.add(new BasicNameValuePair("id", Titulacion.getPID()));


                        JSONObject json = jsonParser.makeHttpRequest(
                                url_delete, "POST", params);


                        Log.d("Delete Product", json.toString());

                        success = json.getInt("success");

                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
            }



        }

例如,未达到日志

主要活动:

public void onDestroy(){
    super.onDestroy();
    Intent msgIntent = new Intent(Titulacion.this, FinIntentService.class);
    startService(msgIntent);

}

我之前尝试过使用 Asynctask,但是在 onDestroy 时无法获得想要的效果。然而,在某些情况下(30 个中有 1 个)synctask 完成了它的任务。

4

1 回答 1

0

实际上onDestroy方法不能被调用。

onDestroy仅当系统资源不足(内存、cpu 时间等)并决定终止您的活动/应用程序或有人在您的活动上调用完成()时才调用。

如果你想释放一些资源,你应该这样做 onPause()

于 2013-07-01T10:52:49.170 回答