Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the concept of Pending Intent? Why and when we use Pending Intent? [duplicate]

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

like image 711
Khawar Raza Avatar asked Oct 25 '11 10:10

Khawar Raza


1 Answers

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

like image 171
Tofeeq Ahmad Avatar answered Sep 27 '22 19:09

Tofeeq Ahmad