IntentFilter
open class IntentFilter : Parcelable
kotlin.Any | |
↳ | android.content.IntentFilter |
Structured description of Intent values to be matched. An IntentFilter can match against actions, categories, and data (either via its type, scheme, and/or path) in an Intent. It also includes a "priority" value which is used to order multiple matching filters.
IntentFilter objects are often created in XML as part of a package's AndroidManifest.xml
file, using intent-filter
tags.
There are three Intent characteristics you can filter on: the action, data, and categories. For each of these characteristics you can provide multiple possible matching values (via addAction
, addDataType
, addDataScheme
, addDataSchemeSpecificPart
, addDataAuthority
, addDataPath
, and addCategory
, respectively). For actions, if no data characteristics are specified, then the filter will only match intents that contain no data.
The data characteristic is itself divided into three attributes: type, scheme, authority, and path. Any that are specified must match the contents of the Intent. If you specify a scheme but no type, only Intent that does not have a type (such as mailto:) will match; a content: URI will never match because they always have a MIME type that is supplied by their content provider. Specifying a type with no scheme has somewhat special meaning: it will match either an Intent with no URI field, or an Intent with a content: or file: URI. If you specify neither, then only an Intent with no data or type will match. To specify an authority, you must also specify one or more schemes that it is associated with. To specify a path, you also must specify both one or more authorities and one or more schemes it is associated with.
Filter Rules
A match is based on the following rules. Note that for an IntentFilter to match an Intent, three conditions must hold: the action and category must match, and the data (both the data type and data scheme+authority+path if specified) must match (see match(android.content.ContentResolver,android.content.Intent,boolean,java.lang.String)
for more details on how the data fields match).
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.
Data Type matches if any of the given values match the Intent type. The Intent type is determined by calling android.content.Intent#resolveType. A wildcard can be used for the MIME sub-type, in both the Intent and IntentFilter, so that the type "audio/*" will match "audio/mpeg", "audio/aiff", "audio/*", etc. Note that MIME type matching here is case sensitive, unlike formal RFC MIME types! You should thus always use lower case letters for your MIME types.
Data Scheme matches if any of the given values match the Intent data's scheme. The Intent scheme is determined by calling Intent#getData
and android.net.Uri#getScheme
on that URI. Note that scheme matching here is case sensitive, unlike formal RFC schemes! You should thus always use lower case letters for your schemes.
Data Scheme Specific Part matches if any of the given values match the Intent's data scheme specific part and one of the data schemes in the filter has matched the Intent, or no scheme specific parts were supplied in the filter. The Intent scheme specific part is determined by calling Intent#getData
and android.net.Uri#getSchemeSpecificPart
on that URI. Note that scheme specific part matching is case sensitive.
Data Authority matches if any of the given values match the Intent's data authority and one of the data schemes in the filter has matched the Intent, or no authorities were supplied in the filter. The Intent authority is determined by calling Intent#getData
and android.net.Uri#getAuthority
on that URI. Note that authority matching here is case sensitive, unlike formal RFC host names! You should thus always use lower case letters for your authority.
Data Path matches if any of the given values match the Intent's data path and both a scheme and authority in the filter has matched against the Intent, or no paths were supplied in the filter. The Intent authority is determined by calling Intent#getData
and android.net.Uri#getPath
on that URI.
Categories match if all of the categories in the Intent match categories given in the filter. Extra categories in the filter that are not in the Intent will not cause the match to fail. Note that unlike the action, an IntentFilter with no categories will only match an Intent that does not have any categories.
Summary
Nested classes | |
---|---|
This is an entry for a single authority in the Iterator returned by |
|
open |
This exception is thrown when a given MIME type does not have a valid syntax. |
Constants | |
---|---|
static Int |
The part of a match constant that applies a quality adjustment to the basic category of match. |
static Int |
Quality adjustment applied to the category of match that signifies the default, base value; higher numbers improve the quality while lower numbers reduce it. |
static Int |
The filter matched an intent that had no data specified. |
static Int |
The filter matched an intent with the same data URI scheme and authority host. |
static Int |
The part of a match constant that describes the category of match that occurred. |
static Int |
The filter matched an intent with the same data URI scheme, authority, and path. |
static Int |
The filter matched an intent with the same data URI scheme and authority host and port. |
static Int |
The filter matched an intent with the same data URI scheme. |
static Int |
The filter matched an intent with the same data URI scheme and scheme specific part. |
static Int |
The filter matched an intent with the same data MIME type. |
static Int |
The filter didn't match due to different actions. |
static Int |
The filter didn't match because it required one or more categories that were not in the Intent. |
static Int |
The filter didn't match due to different data URIs. |
static Int |
The filter didn't match due to different MIME types. |
static Int |
The filter |
static Int |
The filter |
Inherited constants | |
---|---|
Public constructors | |
---|---|
New empty IntentFilter. |
|
IntentFilter(action: String!) New IntentFilter that matches a single action with no data. |
|
IntentFilter(action: String!, dataType: String!) New IntentFilter that matches a single action and data type. |
|
IntentFilter(o: IntentFilter!) New IntentFilter containing a copy of an existing filter. |
Public methods | |
---|---|
MutableIterator<String!>! |
Return an iterator over the filter's actions. |
Unit |
Add a new Intent action to match against. |
Unit |
addCategory(category: String!) Add a new Intent category to match against. |
Unit |
addDataAuthority(host: String!, port: String!) Add a new Intent data authority to match against. |
Unit |
addDataPath(path: String!, type: Int) Add a new Intent data path to match against. |
Unit |
addDataScheme(scheme: String!) Add a new Intent data scheme to match against. |
Unit |
addDataSchemeSpecificPart(ssp: String!, type: Int) Add a new Intent data "scheme specific part" to match against. |
Unit |
addDataType(type: String!) Add a new Intent data type to match against. |
Unit |
Add a new URI relative filter group to match against the Intent data. |
open Predicate<Intent!> |
Return a |
open Predicate<Intent!> |
asPredicateWithTypeResolution(resolver: ContentResolver) Return a |
MutableIterator<IntentFilter.AuthorityEntry!>! |
Return an iterator over the filter's data authorities. |
MutableIterator<String!>! |
Return an iterator over the filter's categories. |
Unit |
Removes all existing URI relative filter groups in the intent filter. |
Int |
Return the number of actions in the filter. |
Int |
Return the number of categories in the filter. |
Int |
Return the number of data authorities in the filter. |
Int |
Return the number of data paths in the filter. |
Int |
Return the number of data scheme specific parts in the filter. |
Int |
Return the number of data schemes in the filter. |
Int |
Return the number of data types in the filter. |
Int |
Return the number of URI relative filter groups in the intent filter. |
open static IntentFilter! |
Create a new IntentFilter instance with a specified action and MIME type, where you know the MIME type is correctly formatted. |
Int | |
open Unit | |
String! |
Return an action in the filter. |
String! |
getCategory(index: Int) Return a category in the filter. |
IntentFilter.AuthorityEntry! |
getDataAuthority(index: Int) Return a data authority in the filter. |
PatternMatcher! |
getDataPath(index: Int) Return a data path in the filter. |
String! |
getDataScheme(index: Int) Return a data scheme in the filter. |
PatternMatcher! |
getDataSchemeSpecificPart(index: Int) Return a data scheme specific part in the filter. |
String! |
getDataType(index: Int) Return a data type in the filter. |
Int |
Return the priority of this filter. |
UriRelativeFilterGroup |
getUriRelativeFilterGroup(index: Int) Return a URI relative filter group in the intent filter. |
Boolean |
Is the given action included in the filter? Note that if the filter does not include any actions, false will always be returned. |
Boolean |
hasCategory(category: String!) Is the given category included in the filter? |
Boolean |
hasDataAuthority(data: Uri!) Is the given data authority included in the filter? Note that if the filter does not include any authorities, false will always be returned. |
Boolean |
hasDataPath(data: String!) Is the given data path included in the filter? Note that if the filter does not include any paths, false will always be returned. |
Boolean |
hasDataScheme(scheme: String!) Is the given data scheme included in the filter? Note that if the filter does not include any scheme, false will always be returned. |
Boolean |
hasDataSchemeSpecificPart(data: String!) Is the given data scheme specific part included in the filter? Note that if the filter does not include any scheme specific parts, false will always be returned. |
Boolean |
hasDataType(type: String!) Is the given data type included in the filter? Note that if the filter does not include any type, false will always be returned. |
Int |
match(resolver: ContentResolver!, intent: Intent!, resolve: Boolean, logTag: String!) Test whether this filter matches the given intent. |
Int |
match(action: String!, type: String!, scheme: String!, data: Uri!, categories: MutableSet<String!>!, logTag: String!) Test whether this filter matches the given intent data. |
Boolean |
matchAction(action: String!) Match this filter against an Intent's action. |
String! |
matchCategories(categories: MutableSet<String!>!) Match this filter against an Intent's categories. |
Int |
Match this filter against an Intent's data (type, scheme and path). |
Int |
matchDataAuthority(data: Uri!) Match this intent filter against the given Intent data. |
MutableIterator<PatternMatcher!>! |
Return an iterator over the filter's data paths. |
open Unit |
readFromXml(parser: XmlPullParser!) |
MutableIterator<PatternMatcher!>! |
Return an iterator over the filter's data scheme specific parts. |
MutableIterator<String!>! |
Return an iterator over the filter's data schemes. |
Unit |
setPriority(priority: Int) Modify priority of this filter. |
MutableIterator<String!>! |
Return an iterator over the filter's data types. |
Unit |
writeToParcel(dest: Parcel, flags: Int) |
open Unit |
writeToXml(serializer: XmlSerializer!) Write the contents of the IntentFilter as an XML stream. |
Properties | |
---|---|
static Parcelable.Creator<IntentFilter!> |
Constants
MATCH_ADJUSTMENT_MASK
static val MATCH_ADJUSTMENT_MASK: Int
The part of a match constant that applies a quality adjustment to the basic category of match. The value MATCH_ADJUSTMENT_NORMAL
is no adjustment; higher numbers than that improve the quality, while lower numbers reduce it.
Value: 65535
MATCH_ADJUSTMENT_NORMAL
static val MATCH_ADJUSTMENT_NORMAL: Int
Quality adjustment applied to the category of match that signifies the default, base value; higher numbers improve the quality while lower numbers reduce it.
Value: 32768
MATCH_CATEGORY_EMPTY
static val MATCH_CATEGORY_EMPTY: Int
The filter matched an intent that had no data specified.
Value: 1048576
MATCH_CATEGORY_HOST
static val MATCH_CATEGORY_HOST: Int
The filter matched an intent with the same data URI scheme and authority host.
Value: 3145728
MATCH_CATEGORY_MASK
static val MATCH_CATEGORY_MASK: Int
The part of a match constant that describes the category of match that occurred. May be either MATCH_CATEGORY_EMPTY
, MATCH_CATEGORY_SCHEME
, MATCH_CATEGORY_SCHEME_SPECIFIC_PART
, MATCH_CATEGORY_HOST
, MATCH_CATEGORY_PORT
, MATCH_CATEGORY_PATH
, or MATCH_CATEGORY_TYPE
. Higher values indicate a better match.
Value: 268369920
MATCH_CATEGORY_PATH
static val MATCH_CATEGORY_PATH: Int
The filter matched an intent with the same data URI scheme, authority, and path.
Value: 5242880
MATCH_CATEGORY_PORT
static val MATCH_CATEGORY_PORT: Int
The filter matched an intent with the same data URI scheme and authority host and port.
Value: 4194304
MATCH_CATEGORY_SCHEME
static val MATCH_CATEGORY_SCHEME: Int
The filter matched an intent with the same data URI scheme.
Value: 2097152
MATCH_CATEGORY_SCHEME_SPECIFIC_PART
static val MATCH_CATEGORY_SCHEME_SPECIFIC_PART: Int
The filter matched an intent with the same data URI scheme and scheme specific part.
Value: 5767168
MATCH_CATEGORY_TYPE
static val MATCH_CATEGORY_TYPE: Int
The filter matched an intent with the same data MIME type.
Value: 6291456
NO_MATCH_ACTION
static val NO_MATCH_ACTION: Int
The filter didn't match due to different actions.
Value: -3
NO_MATCH_CATEGORY
static val NO_MATCH_CATEGORY: Int
The filter didn't match because it required one or more categories that were not in the Intent.
Value: -4
NO_MATCH_DATA
static val NO_MATCH_DATA: Int
The filter didn't match due to different data URIs.
Value: -2
NO_MATCH_TYPE
static val NO_MATCH_TYPE: Int
The filter didn't match due to different MIME types.
Value: -1
SYSTEM_HIGH_PRIORITY
static val SYSTEM_HIGH_PRIORITY: Int
The filter setPriority
value at which system high-priority receivers are placed; that is, receivers that should execute before application code. Applications should never use filters with this or higher priorities.
Value: 1000
See Also
SYSTEM_LOW_PRIORITY
static val SYSTEM_LOW_PRIORITY: Int
The filter setPriority
value at which system low-priority receivers are placed; that is, receivers that should execute after application code. Applications should never use filters with this or lower priorities.
Value: -1000
See Also
Public constructors
IntentFilter
IntentFilter(action: String!)
New IntentFilter that matches a single action with no data. If no data characteristics are subsequently specified, then the filter will only match intents that contain no data.
Parameters | |
---|---|
action |
String!: The action to match, such as Intent.ACTION_MAIN. |
IntentFilter
IntentFilter(
action: String!,
dataType: String!)
New IntentFilter that matches a single action and data type.
Note: MIME type matching in the Android framework is case-sensitive, unlike formal RFC MIME types. As a result, you should always write your MIME types with lower case letters, and any MIME types you receive from outside of Android should be converted to lower case before supplying them here.
Throws MalformedMimeTypeException
if the given MIME type is not syntactically correct.
Parameters | |
---|---|
action |
String!: The action to match, such as Intent.ACTION_VIEW. |
dataType |
String!: The type to match, such as "vnd.android.cursor.dir/person". |
IntentFilter
IntentFilter(o: IntentFilter!)
New IntentFilter containing a copy of an existing filter.
Parameters | |
---|---|
o |
IntentFilter!: The original filter to copy. |
Public methods
actionsIterator
fun actionsIterator(): MutableIterator<String!>!
Return an iterator over the filter's actions. If there are no actions, returns null.
addAction
fun addAction(action: String!): Unit
Add a new Intent action to match against. If any actions are included in the filter, then an Intent's action must be one of those values for it to match. If no actions are included, the Intent action is ignored.
Parameters | |
---|---|
action |
String!: Name of the action to match, such as Intent.ACTION_VIEW. |
addCategory
fun addCategory(category: String!): Unit
Add a new Intent category to match against. The semantics of categories is the opposite of actions -- an Intent includes the categories that it requires, all of which must be included in the filter in order to match. In other words, adding a category to the filter has no impact on matching unless that category is specified in the intent.
Parameters | |
---|---|
category |
String!: Name of category to match, such as Intent.CATEGORY_EMBED. |
addDataAuthority
fun addDataAuthority(
host: String!,
port: String!
): Unit
Add a new Intent data authority to match against. The filter must include one or more schemes (via addDataScheme
) for the authority to be considered. If any authorities are included in the filter, then an Intent's data must match one of them. If no authorities are included, then only the scheme must match.
Note: host name in the Android framework is case-sensitive, unlike formal RFC host names. As a result, you should always write your host names with lower case letters, and any host names you receive from outside of Android should be converted to lower case before supplying them here.
Parameters | |
---|---|
host |
String!: The host part of the authority to match. May start with a single '*' to wildcard the front of the host name. |
port |
String!: Optional port part of the authority to match. If null, any port is allowed. |
See Also
addDataPath
fun addDataPath(
path: String!,
type: Int
): Unit
Add a new Intent data path to match against. The filter must include one or more schemes (via addDataScheme
) and one or more authorities (via addDataAuthority
) for the path to be considered. If any paths are included in the filter, then an Intent's data must match one of them. If no paths are included, then only the scheme/authority must match.
The path given here can either be a literal that must directly match or match against a prefix, or it can be a simple globbing pattern. If the latter, you can use '*' anywhere in the pattern to match zero or more instances of the previous character, '.' as a wildcard to match any character, and '\' to escape the next character.
Parameters | |
---|---|
path |
String!: Either a raw string that must exactly match the file path, or a simple pattern, depending on type. |
type |
Int: Determines how path will be compared to determine a match: either PatternMatcher#PATTERN_LITERAL , PatternMatcher#PATTERN_PREFIX , PatternMatcher#PATTERN_SUFFIX , or PatternMatcher#PATTERN_SIMPLE_GLOB . |
See Also
addDataScheme
fun addDataScheme(scheme: String!): Unit
Add a new Intent data scheme to match against. If any schemes are included in the filter, then an Intent's data must be either one of these schemes or a matching data type. If no schemes are included, then an Intent will match only if it includes no data.
Note: scheme matching in the Android framework is case-sensitive, unlike formal RFC schemes. As a result, you should always write your schemes with lower case letters, and any schemes you receive from outside of Android should be converted to lower case before supplying them here.
Parameters | |
---|---|
scheme |
String!: Name of the scheme to match, such as "http". |
See Also
addDataSchemeSpecificPart
fun addDataSchemeSpecificPart(
ssp: String!,
type: Int
): Unit
Add a new Intent data "scheme specific part" to match against. The filter must include one or more schemes (via addDataScheme
) for the scheme specific part to be considered. If any scheme specific parts are included in the filter, then an Intent's data must match one of them. If no scheme specific parts are included, then only the scheme must match.
The "scheme specific part" that this matches against is the string returned by Uri.getSchemeSpecificPart
. For Uris that contain a path, this kind of matching is not generally of interest, since addDataAuthority(java.lang.String,java.lang.String)
and addDataPath(java.lang.String,int)
can provide a better mechanism for matching them. However, for Uris that do not contain a path, the authority and path are empty, so this is the only way to match against the non-scheme part.
Parameters | |
---|---|
ssp |
String!: Either a raw string that must exactly match the scheme specific part path, or a simple pattern, depending on type. |
type |
Int: Determines how ssp will be compared to determine a match: either PatternMatcher#PATTERN_LITERAL , PatternMatcher#PATTERN_PREFIX , PatternMatcher#PATTERN_SUFFIX , or PatternMatcher#PATTERN_SIMPLE_GLOB . |
See Also
addDataType
fun addDataType(type: String!): Unit
Add a new Intent data type to match against. If any types are included in the filter, then an Intent's data must be either one of these types or a matching scheme. If no data types are included, then an Intent will only match if it specifies no data.
Note: MIME type matching in the Android framework is case-sensitive, unlike formal RFC MIME types. As a result, you should always write your MIME types with lower case letters, and any MIME types you receive from outside of Android should be converted to lower case before supplying them here.
Throws MalformedMimeTypeException
if the given MIME type is not syntactically correct.
Parameters | |
---|---|
type |
String!: Name of the data type to match, such as "vnd.android.cursor.dir/person". |
See Also
addUriRelativeFilterGroup
fun addUriRelativeFilterGroup(group: UriRelativeFilterGroup): Unit
Add a new URI relative filter group to match against the Intent data. The intent filter must include one or more schemes (via addDataScheme
) and one or more authorities (via addDataAuthority
) for the group to be considered.
Groups will be matched in the order they were added and matching will only be done if no data paths match or if none are included. If both data paths and groups are not included, then only the scheme/authority must match.
Parameters | |
---|---|
group |
UriRelativeFilterGroup: A UriRelativeFilterGroup to match the URI. This value cannot be null . |
asPredicate
open fun asPredicate(): Predicate<Intent!>
Return a Predicate
which tests whether this filter matches the given intent.
The intent's type will always be tested using a simple Intent#getType()
check. To instead perform a detailed type resolution before matching, use asPredicateWithTypeResolution(android.content.ContentResolver)
.
Return | |
---|---|
Predicate<Intent!> |
This value cannot be null . |
asPredicateWithTypeResolution
open fun asPredicateWithTypeResolution(resolver: ContentResolver): Predicate<Intent!>
Return a Predicate
which tests whether this filter matches the given intent.
The intent's type will always be resolved by calling Intent#resolveType(ContentResolver)
before matching.
Parameters | |
---|---|
resolver |
ContentResolver: to be used when calling Intent#resolveType(ContentResolver) before matching. This value cannot be null . |
Return | |
---|---|
Predicate<Intent!> |
This value cannot be null . |
authoritiesIterator
fun authoritiesIterator(): MutableIterator<IntentFilter.AuthorityEntry!>!
Return an iterator over the filter's data authorities.
categoriesIterator
fun categoriesIterator(): MutableIterator<String!>!
Return an iterator over the filter's categories.
Return | |
---|---|
MutableIterator<String!>! |
Iterator if this filter has categories or null if none. |
clearUriRelativeFilterGroups
fun clearUriRelativeFilterGroups(): Unit
Removes all existing URI relative filter groups in the intent filter.
countActions
fun countActions(): Int
Return the number of actions in the filter.
countCategories
fun countCategories(): Int
Return the number of categories in the filter.
countDataAuthorities
fun countDataAuthorities(): Int
Return the number of data authorities in the filter.
countDataPaths
fun countDataPaths(): Int
Return the number of data paths in the filter.
countDataSchemeSpecificParts
fun countDataSchemeSpecificParts(): Int
Return the number of data scheme specific parts in the filter.
countDataSchemes
fun countDataSchemes(): Int
Return the number of data schemes in the filter.
countDataTypes
fun countDataTypes(): Int
Return the number of data types in the filter.
countUriRelativeFilterGroups
fun countUriRelativeFilterGroups(): Int
Return the number of URI relative filter groups in the intent filter.
create
open static fun create(
action: String!,
dataType: String!
): IntentFilter!
Create a new IntentFilter instance with a specified action and MIME type, where you know the MIME type is correctly formatted. This catches the MalformedMimeTypeException
exception that the constructor can call and turns it into a runtime exception.
Parameters | |
---|---|
action |
String!: The action to match, such as Intent.ACTION_VIEW. |
dataType |
String!: The type to match, such as "vnd.android.cursor.dir/person". |
Return | |
---|---|
IntentFilter! |
A new IntentFilter for the given action and type. |
See Also
describeContents
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
getCategory
fun getCategory(index: Int): String!
Return a category in the filter.
getDataAuthority
fun getDataAuthority(index: Int): IntentFilter.AuthorityEntry!
Return a data authority in the filter.
getDataPath
fun getDataPath(index: Int): PatternMatcher!
Return a data path in the filter.
getDataScheme
fun getDataScheme(index: Int): String!
Return a data scheme in the filter.
getDataSchemeSpecificPart
fun getDataSchemeSpecificPart(index: Int): PatternMatcher!
Return a data scheme specific part in the filter.
getDataType
fun getDataType(index: Int): String!
Return a data type in the filter.
getPriority
fun getPriority(): Int
Return the priority of this filter.
Return | |
---|---|
Int |
The priority of the filter. |
See Also
getUriRelativeFilterGroup
fun getUriRelativeFilterGroup(index: Int): UriRelativeFilterGroup
Return a URI relative filter group in the intent filter.
Note: use of this method will result in a NullPointerException if no groups exists for this intent filter.
Parameters | |
---|---|
index |
Int: index of the element to return |
Return | |
---|---|
UriRelativeFilterGroup |
This value cannot be null . |
Exceptions | |
---|---|
java.lang.IndexOutOfBoundsException |
if index is out of range |
hasAction
fun hasAction(action: String!): Boolean
Is the given action included in the filter? Note that if the filter does not include any actions, false will always be returned.
Parameters | |
---|---|
action |
String!: The action to look for. |
Return | |
---|---|
Boolean |
True if the action is explicitly mentioned in the filter. |
hasCategory
fun hasCategory(category: String!): Boolean
Is the given category included in the filter?
Parameters | |
---|---|
category |
String!: The category that the filter supports. |
Return | |
---|---|
Boolean |
True if the category is explicitly mentioned in the filter. |
hasDataAuthority
fun hasDataAuthority(data: Uri!): Boolean
Is the given data authority included in the filter? Note that if the filter does not include any authorities, false will always be returned.
Parameters | |
---|---|
data |
Uri!: The data whose authority is being looked for. |
Return | |
---|---|
Boolean |
Returns true if the data string matches an authority listed in the filter. |
hasDataPath
fun hasDataPath(data: String!): Boolean
Is the given data path included in the filter? Note that if the filter does not include any paths, false will always be returned.
Parameters | |
---|---|
data |
String!: The data path to look for. This is without the scheme prefix. |
Return | |
---|---|
Boolean |
True if the data string matches a path listed in the filter. |
hasDataScheme
fun hasDataScheme(scheme: String!): Boolean
Is the given data scheme included in the filter? Note that if the filter does not include any scheme, false will always be returned.
Parameters | |
---|---|
scheme |
String!: The data scheme to look for. |
Return | |
---|---|
Boolean |
True if the scheme is explicitly mentioned in the filter. |
hasDataSchemeSpecificPart
fun hasDataSchemeSpecificPart(data: String!): Boolean
Is the given data scheme specific part included in the filter? Note that if the filter does not include any scheme specific parts, false will always be returned.
Parameters | |
---|---|
data |
String!: The scheme specific part that is being looked for. |
Return | |
---|---|
Boolean |
Returns true if the data string matches a scheme specific part listed in the filter. |
hasDataType
fun hasDataType(type: String!): Boolean
Is the given data type included in the filter? Note that if the filter does not include any type, false will always be returned.
Parameters | |
---|---|
type |
String!: The data type to look for. |
Return | |
---|---|
Boolean |
True if the type is explicitly mentioned in the filter. |
match
fun match(
resolver: ContentResolver!,
intent: Intent!,
resolve: Boolean,
logTag: String!
): Int
Test whether this filter matches the given intent.
Parameters | |
---|---|
intent |
Intent!: The Intent to compare against. |
resolve |
Boolean: If true, the intent's type will be resolved by calling Intent.resolveType(); otherwise a simple match against Intent.type will be performed. |
logTag |
String!: Tag to use in debugging messages. |
Return | |
---|---|
Int |
Returns either a valid match constant (a combination of MATCH_CATEGORY_MASK and MATCH_ADJUSTMENT_MASK ), or one of the error codes NO_MATCH_TYPE if the type didn't match, NO_MATCH_DATA if the scheme/path didn't match, NO_MATCH_ACTION if the action didn't match, or NO_MATCH_CATEGORY if one or more categories didn't match. |
match
fun match(
action: String!,
type: String!,
scheme: String!,
data: Uri!,
categories: MutableSet<String!>!,
logTag: String!
): Int
Test whether this filter matches the given intent data. A match is only successful if the actions and categories in the Intent match against the filter, as described in IntentFilter
; in that case, the match result returned will be as per matchData
.
Parameters | |
---|---|
action |
String!: The intent action to match against (Intent.getAction). |
type |
String!: The intent type to match against (Intent.resolveType()). |
scheme |
String!: The data scheme to match against (Intent.getScheme()). |
data |
Uri!: The data URI to match against (Intent.getData()). |
categories |
MutableSet<String!>!: The categories to match against (Intent.getCategories()). |
logTag |
String!: Tag to use in debugging messages. |
Return | |
---|---|
Int |
Returns either a valid match constant (a combination of MATCH_CATEGORY_MASK and MATCH_ADJUSTMENT_MASK ), or one of the error codes NO_MATCH_TYPE if the type didn't match, NO_MATCH_DATA if the scheme/path didn't match, NO_MATCH_ACTION if the action didn't match, or NO_MATCH_CATEGORY if one or more categories didn't match. |
matchAction
fun matchAction(action: String!): Boolean
Match this filter against an Intent's action. If the filter does not specify any actions, the match will always fail.
Parameters | |
---|---|
action |
String!: The desired action to look for. |
Return | |
---|---|
Boolean |
True if the action is listed in the filter. |
matchCategories
fun matchCategories(categories: MutableSet<String!>!): String!
Match this filter against an Intent's categories. Each category in the Intent must be specified by the filter; if any are not in the filter, the match fails.
Parameters | |
---|---|
categories |
MutableSet<String!>!: The categories included in the intent, as returned by Intent.getCategories(). |
Return | |
---|---|
String! |
If all categories match (success), null; else the name of the first category that didn't match. |
matchData
fun matchData(
type: String!,
scheme: String!,
data: Uri!
): Int
Match this filter against an Intent's data (type, scheme and path). If the filter does not specify any types and does not specify any schemes/paths, the match will only succeed if the intent does not also specify a type or data. If the filter does not specify any schemes, it will implicitly match intents with no scheme, or the schemes "content:" or "file:" (basically performing a MIME-type only match). If the filter does not specify any MIME types, the Intent also must not specify a MIME type.
Be aware that to match against an authority, you must also specify a base scheme the authority is in. To match against a data path, both a scheme and authority must be specified. If the filter does not specify any types or schemes that it matches against, it is considered to be empty (any authority or data path given is ignored, as if it were empty as well).
Note: MIME type, Uri scheme, and host name matching in the Android framework is case-sensitive, unlike the formal RFC definitions. As a result, you should always write these elements with lower case letters, and normalize any MIME types or Uris you receive from outside of Android to ensure these elements are lower case before supplying them here.
Parameters | |
---|---|
type |
String!: The desired data type to look for, as returned by Intent.resolveType(). |
scheme |
String!: The desired data scheme to look for, as returned by Intent.getScheme(). |
data |
Uri!: The full data string to match against, as supplied in Intent.data. |
Return | |
---|---|
Int |
Returns either a valid match constant (a combination of MATCH_CATEGORY_MASK and MATCH_ADJUSTMENT_MASK ), or one of the error codes NO_MATCH_TYPE if the type didn't match or NO_MATCH_DATA if the scheme/path didn't match. |
See Also
matchDataAuthority
fun matchDataAuthority(data: Uri!): Int
Match this intent filter against the given Intent data. This ignores the data scheme -- unlike matchData
, the authority will match regardless of whether there is a matching scheme.
Parameters | |
---|---|
data |
Uri!: The data whose authority is being looked for. |
Return | |
---|---|
Int |
Returns either MATCH_CATEGORY_HOST , MATCH_CATEGORY_PORT , NO_MATCH_DATA . |
pathsIterator
fun pathsIterator(): MutableIterator<PatternMatcher!>!
Return an iterator over the filter's data paths.
schemeSpecificPartsIterator
fun schemeSpecificPartsIterator(): MutableIterator<PatternMatcher!>!
Return an iterator over the filter's data scheme specific parts.
schemesIterator
fun schemesIterator(): MutableIterator<String!>!
Return an iterator over the filter's data schemes.
setPriority
fun setPriority(priority: Int): Unit
Modify priority of this filter. This only affects receiver filters. The priority of activity filters are set in XML and cannot be changed programmatically. The default priority is 0. Positive values will be before the default, lower values will be after it. Applications should use a value that is larger than SYSTEM_LOW_PRIORITY
and smaller than SYSTEM_HIGH_PRIORITY
.
Parameters | |
---|---|
priority |
Int: The new priority value. |
typesIterator
fun typesIterator(): MutableIterator<String!>!
Return an iterator over the filter's data types.
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Parameters | |
---|---|
dest |
Parcel: The Parcel in which the object should be written. This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
writeToXml
open fun writeToXml(serializer: XmlSerializer!): Unit
Write the contents of the IntentFilter as an XML stream.