在取消android中的多个警报时id的冲突

时间:2016-02-01 06:53:24

标签: android android-intent android-pendingintent android-alarms repeatingalarm

我的应用可让用户设置在特定时间服用药物的提醒。 设置这些警报没有问题。我很难在其他活动的稍后时间取消这些警报

这是我设置闹钟的代码:

private void setAlarms() {
    Intent myIntent=new Intent(getApplicationContext(), AlarmReceiver.class);
    myIntent.putExtra("MedName",medication_name);
    myIntent.setAction("b5.project.medibro.receivers.AlarmReceiver");
    AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);


    int counter=0;
    for(String timer: timers){
        //timer is a string of the form "hh:mm"
        try {
            String[] comps=timer.split(":");
            Calendar cal=Calendar.getInstance();
            cal.set(Calendar.HOUR_OF_DAY, Integer.valueOf(comps[0]));
            cal.set(Calendar.MINUTE, Integer.valueOf(comps[1]));
            cal.set(Calendar.SECOND, 0);
            cal.set(Calendar.MILLISECOND, 0);
            //Date date= dateFormat.parse(startDate + " " + timer);
            Log.d(TAG,comps[0]+" "+comps[1]+ "Alarm Time: " + cal.getTime().toString());
            PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), counter, myIntent,PendingIntent.FLAG_UPDATE_CURRENT);
            am.setInexactRepeating(AlarmManager.RTC_WAKEUP,
                    cal.getTimeInMillis(),
                    AlarmManager.INTERVAL_DAY,
                    pendingIntent);

            Log.d(TAG,"Counter: "+counter);
            counter++;

        } catch (ParseException e) {
            e.printStackTrace();
            Log.d(TAG,"Time Parsing error: "+e.getMessage());
        }
    }

如您所见,计数器是属于ONE Medicine的pendingIntents的id。 但是当有多种药物时,待定意图将具有相同的ID。(计数器值)

有人可以建议一种替代/有效的方法来解决这种冲突吗?

1 个答案:

答案 0 :(得分:0)

循环结束时,您必须在某处保存计数器值。并在循环开始时获取它。 将它们保存为逗号分隔的整数字符串,其中包含计数器值 与特定药物有关的所有意图。 例如:

String a = "0,1,2,3,4";
putString("MEDICINE_1",a);

然后

getString("MEDICINE_1").split(',')