IntentFilter.Priority Property

Definition

Return the priority of this filter. -or- Modify priority of this filter.

public int Priority { [Android.Runtime.Register("getPriority", "()I", "")] get; [Android.Runtime.Register("setPriority", "(I)V", "")] set; }
[<get: Android.Runtime.Register("getPriority", "()I", "")>]
[<set: Android.Runtime.Register("setPriority", "(I)V", "")>]
member this.Priority : int with get, set

Property Value

The priority of the filter.

Attributes

Remarks

Property getter documentation:

Return the priority of this filter.

Java documentation for android.content.IntentFilter.getPriority().

Property setter documentation:

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 .

Java documentation for android.content.IntentFilter.setPriority(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also