Knowing about Sticky intent in Android

前端 未结 6 1778
后悔当初
后悔当初 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:46

    Intent : Intent is an asynchronous message which is use to communicate between the components in android , except Content Provider. for example you can start activity by startActivity(Intent intent);

    Sticky Intent : sticky intents are associated with the android system for the future broadcast events.

    Pending Intent : Those intent which you want to trigger at some time in future when you application is not alive.

提交回复
热议问题