我正在编写一项每隔几秒钟通知一次的服务,一条通知只出现一次,但预期结果是它多次通知,在列表中多次出现。
我知道通知ID必须在多个通知之间更改才能多次出现,因此我使用AtomicInteger在每次发送通知时增加通知ID。
在类的顶部,我声明了以下变量:
AtomicInteger count;
private Timer timer;
然后在onCreate()方法中,我有以下代码:
@Override
public void onCreate() {
count = new AtomicInteger(0);
final NotificationManager notificationManager = (NotificationManager) getSystemService(Service.NOTIFICATION_SERVICE);
timer = new Timer();
TimerTask task = new TimerTask() {
@Override
public void run() {
Notification notification = new Notification.Builder(SiteCheckService.this)
.setContentTitle("Notification")
.setContentText("You should see this notification.")
.setSmallIcon(R.drawable.ic_launcher_foreground)
.build();
notificationManager.notify(count.incrementAndGet(), notification);
}
};
timer.schedule(task, 15000);
}
onDestroy方法如下:
@Override
public void onDestroy() {
timer.cancel();
timer.purge();
}
我希望通知可以多次发送,但是只能发送一次。 logcat中没有错误。
答案 0 :(得分:0)
我建议您使用通知并将其存储在sharedPreferences
元素中
final String Pref_Name = "Notification";
notificationPreferences = context.getSharedPreferences(Pref_Name, Context.MODE_PRIVATE);
editor = notificationPreferences.edit();
notificationCount = notificationPreferences.getInt("notifCountNumber", 0);
并且在您的notify()
方法之后
editor.putInt("notifCountNumber",notificationCount+1);
editor.commit();
答案 1 :(得分:0)
我使用了ismail alaoui的答案中的建议来确保保存了通知ID,并且还按如下所示将呼叫调度更改为三个参数,以便多次调用TimerTask。
timer.schedule(task, 0, 15000);