PackageManager.GetComponentEnabledSetting(ComponentName) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Return the enabled setting for a package component (activity, receiver, service, provider).
[Android.Runtime.Register("getComponentEnabledSetting", "(Landroid/content/ComponentName;)I", "GetGetComponentEnabledSetting_Landroid_content_ComponentName_Handler")]
public abstract Android.Content.PM.ComponentEnabledState GetComponentEnabledSetting (Android.Content.ComponentName componentName);
[<Android.Runtime.Register("getComponentEnabledSetting", "(Landroid/content/ComponentName;)I", "GetGetComponentEnabledSetting_Landroid_content_ComponentName_Handler")>]
abstract member GetComponentEnabledSetting : Android.Content.ComponentName -> Android.Content.PM.ComponentEnabledState
Parameters
- componentName
- ComponentName
The component to retrieve.
Returns
Returns the current enabled state for the component.
- Attributes
Remarks
Return the enabled setting for a package component (activity, receiver, service, provider). This returns the last value set by #setComponentEnabledSetting(ComponentName, int, int)
; in most cases this value will be #COMPONENT_ENABLED_STATE_DEFAULT
since the value originally specified in the manifest has not been modified.
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.