gpt4 book ai didi

android - 使用 cancel() 从 AlarmManager 删除警报 - Android

转载 作者:IT老高 更新时间:2023-10-28 21:40:57 26 4
gpt4 key购买 nike

我正在尝试用两种不同的方法创建和删除警报,这两种方法都在应用程序逻辑的不同时刻调用。

但是,当我调用 AlarmManager 的 cancel() 方法时,警报并没有被删除。

这是我的 addAlarm() 方法:

AlarmManager alarmManager = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);

Intent intent = new Intent(PROX_ALERT_INTENT);
intent.putExtra("ALERT_TIME", alert.date);
intent.putExtra("ID_ALERT", alert.idAlert);
intent.putExtra("TITLE", alert.title);
intent.putExtra("GEO_LOC", alert.isGeoLoc);
PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext,
alert.idAlert, intent, PendingIntent.FLAG_CANCEL_CURRENT);

Calendar calendar = Calendar.getInstance();
calendar.setTime(alert.date);
alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);
Log.e("ADD ALERT - WithoutGeoLoc - ",alert.toString());

这是我的 deleteAlarm() 方法:

AlarmManager alarmManager = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);

Intent intent = new Intent(PROX_ALERT_INTENT);
intent.putExtra("ALERT_TIME", alert.date);
intent.putExtra("ID_ALERT", alert.idAlert);
intent.putExtra("TITLE", alert.title);
intent.putExtra("GEO_LOC", alert.isGeoLoc);
PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext,
alert.idAlert, intent, PendingIntent.FLAG_CANCEL_CURRENT);

alarmManager.cancel(pendingIntent);
Log.e(TAG,"REMOVE ALERT - without GeoLoc"+alert.toString());

这是我的 Logcat:

01-23 17:44:07.411: E/ADD ALERT - WithoutGeoLoc -(18789): Alert [latitude=0.0, longitude=0.0, title=bfwu, comments=null, address=null, currency=hrk, idAlert=1, date=Sat Feb 23 17:44:04 CET 2013, isGeoLoc=null]
01-23 17:44:13.032: E/REMOVE ALERT without GeoLoc - (18789): Alert [latitude=0.0, longitude=0.0, title=bfwu, comments=null, address=null, currency=hrk, idAlert=1, date=Sat Feb 23 17:44:04 CET 2013, isGeoLoc=null]

这是 AlarmManager 中的 pendingIntent 列表

Current Alarm Manager state:
Realtime wakeup (now=2013-01-23 17:44:37):
RTC_WAKEUP #48: Alarm{2c1d0588 type 0 com.my.app}
type=0 when=+364d23h59m33s288ms repeatInterval=0 count=0
operation=PendingIntent{2c0a6cb0: PendingIntentRecord{2c1d04e8 com.my.app broadcastIntent}}
RTC_WAKEUP #47: Alarm{2c2298a0 type 0 com.my.app}
type=0 when=+30d23h59m27s360ms repeatInterval=0 count=0
operation=PendingIntent{2c292af8: PendingIntentRecord{2c22a628 com.my.app broadcastIntent}}

几个注意事项:

  • RTC_WAKEUP #47 是我的原始闹钟
  • RTC_WAKEUP #48 是一个新警报,应该覆盖 #47 而不是创建一个新警报。

我已经使用返回 true 的 Intent 的 filterEquals() 方法比较了我的 add 和 delete 方法中的两个 Intent (不是 pendingIntents)......但是警报不是删除。我做错了什么?


更新

这是我的 saveAlert() 方法,它调用 addAlarm()deleteAlarm()

private void saveAlert() {
// *** If Modifying Alert => REMOVE OLD ALERT (then add new one)
Intent intent1 = null, intent2 = null;

if (alert.idAlert != null) {
if (alert.isGeoLoc == null || alert.isGeoLoc == false) {
intent2 = ProximityService.removeProximityAlertWithoutGeoLoc(getApplicationContext(), devisesApp.alertsGlobal.getAlertById(alert));
} else {
ProximityService.removeProximityAlert(getApplicationContext(), alert);
}
}
// *** Add Alert
if (alert.isGeoLoc == null || alert.isGeoLoc == false) {
intent1 = ProximityService.addProximityAlertWithoutGeoLoc(getApplicationContext(), alert, devisesApp.alertsGlobal);
} else {
ProximityService.addProximityAlert(getApplicationContext(), alert, devisesApp.alertsGlobal);
}

Log.i(TAG, "[saveAlert] Alert ID : " + alert.idAlert);
devisesApp.alertsGlobal.addById(alert);
Log.i("INTENT EQUALS", intent1.filterEquals(intent2) + ""); // This returns true
}

最佳答案

试试这个标志:

PendingIntent.FLAG_UPDATE_CURRENT

代替:

PendingIntent.FLAG_CANCEL_CURRENT 

所以 PendingIntent 将如下所示:

PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 
alert.idAlert, intent, PendingIntent.FLAG_UPDATE_CURRENT)

(确保您使用相同的 alert 对象和 mContext!)

附注:如果您想要一个全局 AlarmManager,请将 AlarmManager 放在一个静态变量中(并且仅当它为 null 时才对其进行初始化)。

关于android - 使用 cancel() 从 AlarmManager 删除警报 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14485368/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com