5

My question is simple. What is the concept of Pending Intent? Why and when we use Pending Intents? Please also give code example if possible

Tofeeq Ahmad
  • 11,935
  • 4
  • 61
  • 87
Khawar Raza
  • 15,870
  • 24
  • 70
  • 127
  • Pending Intent:- http://www.vogella.de/articles/AndroidServices/article.html#pendingintent – Uttam Oct 25 '11 at 10:58
  • You can go through these links: http://mylifewithandroid.blogspot.com/2007/12/playing-with-intents.html http://www.vogella.de/articles/AndroidIntent/article.html – Hiral Vadodaria Oct 25 '11 at 10:42

1 Answers1

7

A PendingIntent itself is simply a reference to a token maintained by the system describing the original data used to retrieve it. This means that, even if its owning application's process is killed, the PendingIntent itself will remain usable from other processes that have been given it

http://developer.android.com/reference/android/app/PendingIntent.html

Go through that For Details

Tofeeq Ahmad
  • 11,935
  • 4
  • 61
  • 87