Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to understand from the API the purpose of PendingIntent.

Sometimes some methods I use requires this, I still did not get the idea right.

Can anyone could explain? why can't i just use context?

Thanks,

moshik

share|improve this question

1 Answer

up vote 8 down vote accepted

A PendingIntent is a combination of a gross action (start an activity? start a service? send a broadcast?), the action details (in the form of an Intent), and a Context. The PendingIntent is handed to the operating system, which will perform the gross action on the Intent at some future point (hence, "pending"). The Context is for security -- Android will execute the PendingIntent with only the permissions of the Context, so a PendingIntent cannot access things that the Context requesting it cannot.

share|improve this answer
So if iam getting it right, i would use Pending Intent on regular Intent on cases when i wanna make sure i am accessing things that the context can access? – Moshik Apr 27 '10 at 9:39
You use a PendingIntent when you need one for a method parameter. – CommonsWare Apr 27 '10 at 11:05
A real-world example would be very helpful. – satur9nine Jun 22 '11 at 17:05
A real-world example is the AlarmManager class. Its API only allows you to schedule PendingIntents instead of regular Intents. – Mister Smith Apr 17 '12 at 9:58

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.