当我按住按钮并关闭应用程序时发生了什么?

时间:2013-11-25 14:48:09

标签: android android-asynctask notifications

我是android编程的新手。我想知道当我通过holding button and sliding apps

关闭应用程序时会发生什么
  

的onDestroy();叫?

当我以这种方式关闭应用程序时,似乎AsyncTask没有完全关闭。

我在我的应用程序中使用了通知,当我使用holding button and sliding apps关闭我的应用时,通知将不会禁用。

这是我的通知代码:

nman=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    Long when=System.currentTimeMillis();
    final Notification n;
    n=new Notification(R.drawable.securitycameraicon,"security",when);
    Context context=getApplicationContext();
    String Title1="Warning";
    String Text1="this application working in background ";
    Intent notifintent=new Intent(context,MainActivity.class);
    notifintent.setAction(Intent.ACTION_MAIN);
    notifintent.addCategory(Intent.CATEGORY_LAUNCHER);
    PendingIntent pending;
    pending=PendingIntent.getActivity(context,0,notifintent,0);
    n.setLatestEventInfo(context, Title1, Text1, pending);
    n.flags = Notification.FLAG_NO_CLEAR |Notification.FLAG_SHOW_LIGHTS  ;

0 个答案:

没有答案