As stated in the Android Dev Guide, if you want a widget to update more often you should use the AlarmManager to set alarms that do not wake the device.
This question already has an answer here: Closed 10 years ago. Possible Duplicate: Android: how to cancel a request of Location update with intent?
I am trying to create multiple proximity alerts but I cant get it to work... I think that the broadcast receiver gets overwritten and thus is handling only the last broadcast. So if I had two points
I have an AppWidget with 2 pending intents. They work most of the time, but after a while they stop responding. Only thing I have been able to pinpoint is that they are crippled after a Launcher resta
I have a very simple piece of code that is used to schedule my next sync operation.It is running inside the SyncAdapter that extends AbstractThreadedSyncAdapter -- thus uses its context.The PendingInt
I am new to Android. I am trying to develop an Alarm Application, which is actually a speaking clock. I just want the clock to use TextToSpeech API and speak out the greeting stuff and the current tim
I have a broadcast receiver that, upon receiving something, will create a pending intent, package it with some data, and use it to create a notification with NotificationManager.The activity that is s
I\'m having a problem with alarmManager and the pending intent with extras that will go along with it.
I have an alarmManager which I am using to send notifications to the user at specific times.Since there are multiple alarms, I have multiple pending intents that I am creating and giving a unique ID,
I\'m trying to implement notification in Android. Now I have a problem, I don\'t want to have 开发者_运维知识库a PendingIntent that user will open any Activity. How can I do that?PendingIntent conten