Intent-filter匹配规则

Posted X-Bing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intent-filter匹配规则相关的知识,希望对你有一定的参考价值。

Action:至少匹配一个  setAction(String)或者new Intent(String action);

category:可以不添加匹配,但是如果添加必须匹配;  addCategory(String categoru)     当没有添加时:系统会设置默认的category:android.intent.category.DEFAULT;

data:至少匹配一个,如果既要匹配data和Type就要使用setDataAndType(Uri data,String type);    不能先setData(uri) 再setType(string type),因为这两个方法会相互清理;

data:分为mimeType和URI

type:mimeType:指媒体类型(image/jpeg;video/*等);data:uri;

 

以上是关于Intent-filter匹配规则的主要内容,如果未能解决你的问题,请参考以下文章

Intent-filter匹配规则

Intent 匹配规则

[整理] Nginx Location 匹配规则

Springboot中URL的匹配规则

Nginx 路径匹配规则

nginx里面location的匹配规则和顺序