Action
每个Intent只能有一个Action,一般来说set…函数设置的值是唯一的,而add…函数设置的值不是唯一的。如果一个一个intent和IntentFilter要匹配则两者都不为空,且intent中的action能在intentFilter中找到。
我在官网文档中看了这么一句
Action matches if any of the given values match the Intent action; if the filter specifies no actions, then it will only match Intents that do not contain an action.
说如果filter中不包含action则他只能匹配没有action的intent我实际试过,并不能匹配
Category
这个其实和action差不多,都是在intent中的项目必须在filter中找到,不过Category intent中可以没有也可以有多个,而action则要求intent中必须有一个,其他情况不能匹配。
Data
每个Intent只能有一个URI和mimeType
Data匹配的大体方向是一一对应,uri和mimetype必须一一对应,不能一方比另一方多个什么。但是如果filter没有指定uri则默认scheme为content或file就是说intent 带content或file的uri和mimetype也可以匹配。intent空对filter,两者都没有data也是可以匹配的。
Uri
更Category相似,不过是filter中有的在intent中都能找到就算匹配。
uri如果前面未指定,比如scheme未指定则后面的元素制定了也无效。
data android:scheme=”file” android:host=”www.baidu.com”/ 如果分开先效果也一样。