2

I am a beginner to android programming can anybody explain me about the pending intents and its uses,please explain the parameters of pending intents also

thanx in advance!!

George Thomas
  • 4,566
  • 5
  • 30
  • 65
  • 1
    You can find details here : http://developer.android.com/reference/android/app/PendingIntent.html – Siddharth_Vyas Oct 30 '13 at 10:11
  • This question have already been answered here: http://stackoverflow.com/questions/2808796/what-is-pending-intent Hope it helps. Have a nice day! – jsanchez Oct 30 '13 at 10:13

1 Answers1

1

A pending Intent is an Intent that can be executed at a later time. They are just like regular intents except they can have some extra properties that allow them to stay alive so that they can be executed by other apps even after the originating process is killed.

Here are some resources to learn more:

Community
  • 1
  • 1
Anup Cowkur
  • 20,443
  • 6
  • 51
  • 84