Android Intent 和 Intent Filter

  • Android,Intent,IntentFilter

Intent 是一个消息对象,你可以通过它向其他组件发送一个动作请求。

An Intent is a messaging object you can use to request an action from another app component.

使用场景

Intent 有多种使用方式,但是主要有三个使用场景

Intent Types

  • Explicit intents 显示
  • Implicit intents 隐式

Building an Intent

  • Component name
  • Action
  • Data
  • Category
  • Extras
  • Flags

Receiving an Implicit Intent

  • \<action>
  • \<data>
  • \<category>

Using a Pending Intent

Intent Resolution

相关文章

- EOF -

本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
转载请注明:文章转载自 Binkery 技术博客 [https://binkery.com]
本文标题: Android Intent 和 Intent Filter
本文地址: https://binkery.com/archives/479.html