我是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 ;