Intent Filter匹配规则

Intent官方描述:

An intent is an abstract description of an operation to be performed. It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components, and startService(Intent) or bindService(Intent, ServiceConnection, int) to communicate with a background Service.
An Intent provides a facility for performing late runtime binding between the code in different applications. Its most significant use is in the launching of activities, where it can be thought of as the glue between activities. It is basically a passive data structure holding an abstract description of an action to be performed

大致意思为:Intent代表想要执行的动作,可以用在Activity,Broadcast,Service,可以使用从其他应用的组件请求操作,代表一个要执行动作的对象

Intent 分为两种类型:

  • 显式 Intent:按名称(完全限定类名)指定要启动的组件。 通常,您会在自己的应用中使用显式 Intent 来启动组件,这是因为您知道要启动的 Activity 或服务的类名。例如,启动新 Activity 以响应用户操作,或者启动服务以在后台下载文件。
  • 隐式 Intent :不会指定特定的组件,而是声明要执行的常规操作,从而允许其他应用中的组件来处理它。 例如,如需在地图上向用户显示位置,则可以使用隐式 Intent,请求另一具有此功能的应用在地图上显示指定的位置。
//显式Intent
// Executed in an Activity, so 'this' is the Context
// The fileUrl is a string URL, such as 
Intent downloadIntent = new Intent(this, DownloadService.class);
downloadIntent.setData(Uri.parse(fileUrl));
startService(downloadIntent);
//隐式Intent
Intent intent = new Intent();
intent.setAction("com.meituan.test");
startActivity(intent);

上面那个intent,没有指明接收者,只是给了一个action作为接收者的过滤条件。

对于显式Intent,Android不需要去做解析,因为目标组件已经很明确,Android需要解析的是那些隐式Intent,通过解析,将Intent映射给可以处理此Intent的Activity、IntentReceiver或Service。
隐式Intent的过滤信息包含三种,actioncategorydata

Action的匹配规则:

  • Intent中必须存在action,这一点和category不同;
  • action的字符串严格区分大小写,intent中的action必须和过滤规则中的action完全一致才能匹配成功;
  • 匹配规则中可以同时有多个action,但是Intent中的action只需与其中之一相同即可匹配成功;

category匹配规则:

  • 匹配规则中必须添加“android.intent.category.DEFAULT”这个过滤条件;
  • Intent中可以不设置category,这个时候你在使用startActivity或者startActivityForResult的时候,
    其实系统自动会为你添加1中的那个默认category;
  • Intent中可以同时设置多个category,一旦设置多个catrgory,
    那么每个category都必须能够和过滤条件中的某个category匹配成功.

category和action的匹配规则还是有所不同:action有多个的时候,只要其中之一能够匹配成功即可,但是category必须是每一个都需要匹配成功

data

data的结构


总体来说,data分为两部分 mimeTypeURI
mimeType表示image/ipeg,video/*等媒体类型
URI结构一般为

://:/[|>]
  1. scheme:整个URI的模式,如常见的http,file、跳转协议中的 imeituan 等,注意如果URI中没有指定的scheme,那么整个uri无效
  2. host:URI的域名,比如我们常见的www.meituan.com,与scheme一样,一旦没有host那么整个URI也毫无意义;
  3. port:端口号,比如80,很容易理解,只有在URI中指定了scheme和host之后端口号才是有意义的;
  4. path,pathPattern,pathPrefix包含路径信息,path表示完整的路径pathPattern在此基础上可以包含通配符,pathPrefix表示路径的前缀信息;

data的匹配规则:

Intent中必须有data数据;
Intent中的data必须和过滤规则中的某一个data完全匹配;
过滤规则中可以有多个data存在,但是Intent中的data只需匹配其中的任意一个data即可;
过滤规则中可以没有指定URI,但是系统会赋予其默认值:content和file,这一点在Intent中需要注意;
为Intent设定data的时候必须要调用setDataAndType()方法,而不能先setData再setType,因为这两个方法是互斥的,都会清除对方的值,这个有兴趣可以参见源码;
在匹配规则中,data的scheme,host,port,path等属性可以写在同一个< />中,也可以分开单独写,其功效是一样的;

示例代码:

Intent intent = new Intent();
String data = "gaojin://www.baidu.com/food/poi/test";
Uri uri = Uri.parse(data);
intent.setAction(Intent.ACTION_VIEW);
intent.setData(uri);
intent.addCategory(Intent.CATEGORY_DEFAULT);
startActivity(intent);

    
        
        
        
 
        
        
    

你可能感兴趣的:(Intent Filter匹配规则)