我在写一些提醒用户的东西。用户将为其事件设置提醒,当时间到了时,将设置重复警报以触发状态栏通知。但是,在选择通知或清除通知后,警报似乎不会停止。我不确定在何处取消此重复警报。以下是一些代码:在我的主要活动中设置重复警报
alarmTime = Calendar.getInstance();
Intent intent = new Intent(this, AlarmReceive.class);
PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, 0);
AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
alarmTime.add(Calendar.MINUTE,offset_time);
//Schedule the alarm
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, alarmTime.getTimeInMillis(), 30 * 1000, sender);
在我的OnReceive方法中,我只在状态栏中显示通知并将标记设置为 FLAG_AUTO_CANCEL
manager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
// Set the icon, scrolling text and timestamp
Notification notification = new Notification(R.drawable.medical, text, System.currentTimeMillis());
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, i, 0);
notification.flags = Notification.FLAG_AUTO_CANCEL;
manager.notify(R.string.service_text, notification);
当用户选择通知或清除通知时,如何停止警报?
慕姐4208626
一只斗牛犬
烙印99
相关分类