I'm trying to notify user using alarmmanager. The time in milis set for the alarmmanager I retrieved from db, my problem is, I've two different event would like to notify the user which is Event A and Event B, both event have the same time which is for example 8:00PM, Event A was first save into db following by Event B. So when the alarmmanager wakes up, it only notify user the second event which is Event B. But if the Event A time is 8:00PM and Event B time is 8:01PM the alarmmanager will notify user both event. I think in my cases, the Event B alarmmanger cancel the Event A alarmmanager as it have the same time milis that's why it only notify Event B. So please provide me a solution without having cancel the first event. Below is my code which is extends broadcastreceiver,
public void onReceive(Context context, Intent intent) {
SQLiteDatabase db;
db=SQLiteDatabase.openDatabase(path, null, SQLiteDatabase.OPEN_READONLY);
Cursor rs = db.rawQuery("SELECT * FROM Event_Log ORDER BY Event_Date_Time ASC", null);
if(rs.getCount()>0){
rs.moveToFirst();
while(!rs.isAfterLast()){
counter++;
try {
date = rs.getString(6);
String[] dmy = rs.getString(4).split("/");
String[] hm = rs.getString(5).split(":");
cal = Calendar.getInstance();
cal.set(Calendar.DATE, Integer.parseInt(dmy[0]));
cal.set(Calendar.MONTH, Integer.parseInt(dmy[1])-1);
cal.set(Calendar.YEAR, Integer.parseInt(dmy[2]));
cal.set(Calendar.HOUR_OF_DAY, Integer.parseInt(hm[0]));
cal.set(Calendar.MINUTE, Integer.parseInt(hm[1]));
title=rs.getString(1);
content=rs.getString(8);
} catch (Exception e) {
e.printStackTrace();
db.close();
}
Intent service = new Intent(context,NotificationService.class);
service.setData(Uri.parse("timer:" + counter));
service.putExtra("Title", title);
service.putExtra("Content", content);
PendingIntent pIntent = PendingIntent.getService(context, counter, service, Intent.FLAG_GRANT_READ_URI_PERMISSION);
am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pIntent);
rs.moveToNext();
}
db.close();
}
}