我正在尝试清除通知。但是它仍然在那里。无法从通知中打开片段活动。下面是我的代码,
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
int sticky;
try {
AndroidLogger.log(5, TAG, "Missed call notification on start");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_HIGH; //Important for heads-up notification
NotificationChannel channel = new NotificationChannel("1", "Call Notification", importance);
channel.setDescription("Get alert for missed call");
channel.setShowBadge(true);
channel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
Intent notifyIntent = new Intent(this, ViewFragment.class);
notifyIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pIntent = PendingIntent.getActivity(this, 0, notifyIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this, "1")
.setSmallIcon(R.drawable.nexge_logo)
.setContentTitle("Missed Call")
.setContentText(intent.getStringExtra("Number"))
.setContentIntent(pIntent)
.setAutoCancel(true)
.setPriority(Notification.PRIORITY_MAX);
Notification buildNotification = mBuilder.build();
NotificationManager mNotifyMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//mNotifyMgr.notify(1, buildNotification);
startForeground(1,buildNotification);
} catch (Exception exception) {
AndroidLogger.error(1, TAG, "Exception while starting service", exception);
}
return START_NOT_STICKY;
}
}
有人帮我解决这个问题。提前致谢。 以下是我没有得到正确答案的另一个问题。也帮我 About Notification for Missed Call in android
答案 0 :(得分:0)
我对类似问题的解决方案是将PendingIntent标志更改为PendingIntent.FLAG_ONE_SHOT 来自Android文档:
标记,指示此PendingIntent只能使用一次。与getActivity(Context,int,Intent,int),getBroadcast(Context,int,Intent,int)和getService(Context,int,Intent,int)一起使用。
如果设置了该属性,则在调用send()之后,它将自动为您取消,以后任何尝试通过它发送的尝试都会失败。
并添加通知FLAG_AUTO_CANCEL标志:
mBuilder.flags |= Notification.FLAG_AUTO_CANCEL;
应确保该通知在使用后将被删除。
修改: 应该打电话
Notification notification = mBuilder.build();
首先,然后
notification.flags = Notification.FLAG_AUTO_CANCEL;
Edit2 :
刚刚注意到您正在使用startForeground()
的通知。这意味着该通知将在您的“服务/活动”运行期间一直保留(默认情况下,这是默认情况,因此用户将知道仍有一个“服务/活动”正在运行)。
只要您的“服务/活动”作为前台服务运行,通知将一直保留。