I am setting alarams as follows:
AlarmManager alarm = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarm.setRepeating(AlarmManager.RTC_WAKEUP,
calendar1.getTimeInMillis(), 24*60*60 * 1000, pintent);
Like this i am adding so many alarms with different time intervals.
So now i want to get next alarm time out of these.
For that i am using
android.provider.Settings.System.getString(
getContentResolver(),
android.provider.Settings.System.NEXT_ALARM_FORMATTED)
but the above is not returning any thing.
Pls some body help me ..