我正在尝试关闭我的应用程序时关闭通知,因为当我关闭应用程序(最近任务/滑动退出)时,仍会显示通知,如果用户尝试点击通知,应用程序将崩溃。< / p>
@Override
protected void onDestroy() {
super.onDestroy();
notification.cancel(1);
try {
MApplication.sBus.unregister(this);
} catch (Exception e) {
e.printStackTrace();
}
}
onDestroy()
中的但不起作用,因为每次都不会调用onDestroy()
。
答案 0 :(得分:0)
问题解决了
添加java类文件。这里的文件名是 KillNotificationService.java
import android.app.NotificationManager;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
public class KillNotificationService extends Service{
@Override
public void onTaskRemoved(Intent rootIntent) {
//Toast.makeText(this, “service called: “, Toast.LENGTH_LONG).show();
super.onTaskRemoved(rootIntent);
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager nMgr = (NotificationManager) getSystemService(ns);
nMgr.cancelAll();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return super.onStartCommand(intent, flags, startId);
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
使用 MainActivity oncreate
方法调用此服务。
startService(new Intent(this, KillNotificationService.class));
在清单文件
中添加服务<service android:name=".KillNotificationService"/>