android系统处理隐式Intent时, 会比较Intent和IntentFilter的action,data, category属性。
如果以上3个属性全都相符的话, 则IntentFilter所属的component就可以作为目标组件的候选(存在多个符合条件的component时)。
1.action属性 :intent只能定义1个action, 而filter可以定义1个或多个action。
如果intent定义了action, 则定义了这个action的filter都能通过 (当然, filter还可以包含更多额外的action)。
如果intent没有定义action, 那么只要filter定义了action就可以通过。
如果intent定义了action,filter没有定义action, 则这个filter将阻塞所有intent。
2.category属性 : intent可以任意多个category,filter也可以任意个category。
如果intent定义了category, 则定义了这个category的filter都能通过 (当然, filter还可以包含更多额外的category)。
如果intent定义了多个category, 则定义了这多个category的filter都能通过 (当然, filter还可以包含更多额外的category)。
如果intent没有定义category, 那么只要filter定义了category就可以通过。
如果intent定义了action,filter没有定义action, 则这个filter将阻塞所有intent。
但是有一种例外: 以startActivity(intent)方式启动一个activity时, 系统为会intent增加一个值为"android.intent.category.DEFAULT"的category,这就意味着每一个期望通过category测试的activity,都要在其filter中定义"android.intent.category.DEFAULT"(除了作为程序入口的activity)。
3.data属性 : intent最多只能定义1个data,filter则可以定义多个data。
如果intent没有指定data和data type,则只有没有定义data和datetype的filter才能通过;
如果intent定义了data没有定义datatype, 则只有定义了相同data且没有定义datetype的filter才能通过;
如果intent没有定义data却定义了datatype, 则只有未定义data且定义了相同的datatype的filter才能通过;
如果intent既定义了data也定义了datatype, 则只有定义了相同的data和datatype的filter才能通过。
data属性是一个URI, URI中包含scheme,host, post和path, 典型的URI为:scheme://host:port/path
scheme, host, post和path都是可选的。
比较2个data时, 只比较filter中包含的部分。比如filter的一个data只是指定了scheme部分, 则测试时只是比较data的scheme部分, 只要两者的scheme部分相同, 就视 为"相同的data"。