Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am setting up AlarmManager with a PendingIntent in activity A. Then I would like to be able to call cancel() on the same PendingIntent from a different activity B.

The Android documentation says the following:

"If the creating application later re-retrieves the same kind of PendingIntent (same operation, same Intent action, data, categories, and components, and same flags), it will receive a PendingIntent representing the same token if that is still valid, and can thus call cancel() to remove it."

Is it possible to store a PendingIntent in a database and retrieve it from a different activity?

share|improve this question

1 Answer

up vote 1 down vote accepted

If you are not creating your PendingIntent in a dynamic way, then you just need to create it the same way.

I would recommend creating a singleton that will create and deliver your PendingIntent. That way, you could call something like this from anywhere in your application:

PendingIntent pi = PendingIntentHelper.getInstance().buildPendingIntent();
am.cancel(pi);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.