IntentFilter笔记

一、action

  1. <intent-filter>中可以有多个action,Intent只要匹配其中1个action即匹配成功
  2. <intent-filter>没有action,任何Intent无法与之匹配
  3. <intent-filter>中有action,Intent中没有action时可以与之匹配成功
  4. <intent-filter>中有action,Intent中也有action时,必须命中<intent-filter>中的一个action才能匹配成功

Intent中的action必须命中<intent-filter>中的一个action,才能匹配成功。Intent无action时匹配成功。

二、category

<intent-filter>中可以有多个category,Intent也可以有多个category

  1. 如果<intent-filter>不存在category,那么所有的intent都无法通过。
  2. 如果<intent-filter>存在category,如果Intent中不存在存在category,可以通过。
  3. 如果Intent中存在category,那么Intent中的所有category都包含在<intent-filter>中,才可以通过。

android.intent.category.DEFAULT:

Android把所有传给startActivity()的隐式意图当作他们包含至少一个类别:"android.intent.category.DEFAULT",因此,想要接收隐式意图的活动必须在它们的意图过滤器中包含"android.intent.category.DEFAULT"。

android.intent.category.BROWSABLE

三、data

首先<intent-filter>可以有多个data,Intent最多能有1个data。

<intent-filter>和Intent中的data必须完全匹配才能通过,也适用于通配符。

XML 复制代码
<data android:mimeType="text/plain"
   android:host="www.xxx.com"      
   android:path="/aa/bb"
   android:pathPattern="/b/*" 
   android:port="80"
   android:scheme="http" />
相关推荐
梭七y2 小时前
记录学习《手动学习深度学习》这本书的笔记(十一)
笔记·深度学习·学习
投笔丶从戎2 小时前
Kotlin Multiplatform--03:项目实战
android·开发语言·kotlin
居然是阿宋2 小时前
Android Canvas API 详细说明与示例
android
lwewan3 小时前
26考研——中央处理器_数据通路的功能和基本结构(5)
笔记·考研
途中刂3 小时前
第一章 初识Java
java·开发语言·笔记·学习·intellij-idea
愚润求学4 小时前
【动态规划】斐波那契数列模型
c++·笔记·算法·leetcode·动态规划
wuli玉shell5 小时前
spark-Schema 定义字段强类型和弱类型
android·java·spark
正经教主5 小时前
【AI入门】CherryStudio入门4:创建知识库,对接思源笔记
笔记·ai·知识库·cherrystudio·思源笔记
东风西巷5 小时前
BLURRR剪辑软件免费版:创意剪辑,轻松上手,打造个性视频
android·智能手机·音视频·生活·软件需求
JhonKI5 小时前
【MySQL】行结构详解:InnoDb支持格式、如何存储、头信息区域、Null列表、变长字段以及与其他格式的对比
android·数据库·mysql