3

我有一个应用程序需要在一周中的多天设置警报,具体取决于用户设置它们的日期。我让它在适当的时间触发警报的地方工作,但我想知道如何在不覆盖当前警报管理器的情况下执行多个操作。例如,这是我的测试代码:

final int alarmid = (int)System.currentTimeMillis();    //creates unique id for the alarm attached to the object
tempmainfrag.mainObjectList.returnSchedule(i).setAlarmId(alarmid);
for(int j = 0; j < 7; j++)
        {
            if(tempmainfrag.mainObjectList.returnSchedule(i).returnDays()[j])   //if this day of the week has an alarm
            {
                int adjustedday = j+2;  //makes time for DAY_OF_WEEK where sunday = 1, monday = 2, etc.
                if (adjustedday == 8)
                    adjustedday = 1;



                Calendar startcal = Calendar.getInstance();
                startcal.set(Calendar.DAY_OF_WEEK, adjustedday);
                startcal.set(Calendar.HOUR_OF_DAY, tempmainfrag.mainObjectList.returnSchedule(i).returnTimes()[0]);
                startcal.set(Calendar.MINUTE, tempmainfrag.mainObjectList.returnSchedule(i).returnTimes()[1]);
                startcal.set(Calendar.SECOND, 0);
                Log.i("mydebug","Starting cal day of week: " + adjustedday);
                Log.i("mydebug","Starting cal hour of day: " + tempmainfrag.mainObjectList.returnSchedule(i).returnTimes()[0]);
                Log.i("mydebug","Starting minute: " + tempmainfrag.mainObjectList.returnSchedule(i).returnTimes()[1]);
                Intent intent = new Intent(this, SilenceHandler.class);
                intent.putExtra("starttime",tempmainfrag.mainObjectList.returnSchedule(i));
                intent.putExtra("alarm_message", "Test!");  //FOR TESTING
                PendingIntent pendintent = PendingIntent.getBroadcast(this, alarmid, intent, PendingIntent.FLAG_UPDATE_CURRENT);
                AlarmManager alarmman = (AlarmManager)getSystemService(ALARM_SERVICE);
                alarmman.setRepeating(AlarmManager.RTC_WAKEUP, startcal.getTimeInMillis(), AlarmManager.INTERVAL_DAY * 7, pendintent);
//              startcal.set(Calendar.MINUTE, (tempmainfrag.mainObjectList.returnSchedule(i).returnTimes()[1])+1);
//              alarmman.setRepeating(AlarmManager.RTC_WAKEUP, startcal.getTimeInMillis(), AlarmManager.INTERVAL_DAY * 7, pendintent);
            }
        }

for 循环遍历一周中的几天,并在每次迭代时检查是否应该为那一天设置警报。这段代码有效(大概),但是为了测试我是否可以在它上面设置另一个警报,我在此处注释掉的最后两行代码中添加了。这会使警报在一分钟后响起,但也不会提前一分钟。我这样做是为了证明,如果我希望此代码在一周中的多天工作,那么当前设置代码的方式将只为返回 true 的一周的最后一天设置警报。我怎样才能发出多个警报?

4

1 回答 1

3

问题是,尽管您正在为您的 创建一个唯一 ID PendingIntent,这将设置单独的警报,但在您的测试中,您正在重复使用相同的PendingIntent,这将覆盖您以前的。PendingIntent用不同的方法创建一个新的alarmid来测试它。

于 2013-03-07T22:34:56.550 回答