Android alarms is the facility provided by Android through AlarmManager to start an intent at a given time (by passing a pending intent).
I am trying to create a notification at a particular time. Im creating a broadcast receiver and calling it through …
android broadcastreceiver alarmmanager android-pendingintent android-alarmsI want to set up a timer in an Android application that will call a function after every 15/30/45 and n …
android android-sqlite android-alarmsI want to create an alarm object from my application. I am writing a To-Do application which will have an …
android alarmmanager alarm android-alarmsAlthough this question might have been asked before on Stack Overflow, I still haven't found a clear answer. I want …
android android-intent android-service android-notifications android-alarmsIn Android Alarm Manager, how can we schedule multiple alarms which are non-repeating and do not have fixed intervals to …
android android-alarmsThis is my Activity code, Long time = new GregorianCalendar().getTimeInMillis()+20000;//Setting alarm after 20 sec Intent intentAlarm = new Intent("alarm"); intentAlarm.…
android android-intent android-broadcast android-alarms android-broadcastreceiverIn my app I want to run some code every day at a specific time using an AlarmManager. In the …
android restart android-alarms rebootI am trying to develop alarm functionality in a my app which runs on a week days specified by user …
android alarmmanager android-alarms repeatingalarmi am developing an android app to show notifications.How can i poll a webservice at finite interval (say 10 min …
android web-services notifications android-notifications android-alarmsA few years ago, I wrote an alarm app that worked on Android 2, and I'm now trying to upgrade it …
android android-activity android-alarms lockscreen android-notification-bar