Knowing about Sticky intent in Android

前端 未结 6 1772
后悔当初
后悔当初 2020-12-29 18:17

In android there are 3 kinds of Intents,

  1. Intent,
  2. Sticky Intent,
  3. Pending intent.

so What is sticky intent?

6条回答
  •  长发绾君心
    2020-12-29 18:38

    Intent - is a message passing mechanism between components of Android, except for Content Provider. You can use Intent to start any component.

    Sticky Intent - Sticks with Android, for future broadcast listeners. For example if BATTERY_LOW event occurs then that Intent will stick with Android so that any future requests for BATTERY_LOW, will return the Intent.

    Pending Intent - If you want some one to perform any Intent operation at future point of time on behalf of you, then we will use Pending Intent.

提交回复
热议问题