美文网首页
PendingIntent的概述

PendingIntent的概述

作者: 名字_都被占了 | 来源:发表于2018-05-21 22:01 被阅读0次

    PendingIntent表示一种处于pending状态的意图,而pending状态表示的是一种待定,等待,即将发生的意思,就是说接下来有一个intent将在某个特定的时刻发生。可以看出PendingIntent和Intent的区别在于,PendingIntent是在将来的某个不确定的时刻发生,而Intent是立即发生。

    PendingIntent支持三种特定意图:启动Activity,启动Service和发送广播。PendingIntent的匹配规则为:如果两个PendingIntent它们内部的Intent相同并且requestCode也相同,那么这两个PendingIntent就是相同的。Intent的匹配规则是:如果两个Intent的ComponentName和intent-filter都相同,那么这两个Intent就是相同的,需要注意的是Extras不参与Intent的匹配过程。

    相关文章

      网友评论

          本文标题:PendingIntent的概述

          本文链接:https://www.haomeiwen.com/subject/brfcjftx.html