PackageManager.GetApplicationEnabledSetting(String) Method

Definition

Return the enabled setting for an application.

[Android.Runtime.Register("getApplicationEnabledSetting", "(Ljava/lang/String;)I", "GetGetApplicationEnabledSetting_Ljava_lang_String_Handler")]
public abstract Android.Content.PM.ComponentEnabledState GetApplicationEnabledSetting (string packageName);
[<Android.Runtime.Register("getApplicationEnabledSetting", "(Ljava/lang/String;)I", "GetGetApplicationEnabledSetting_Ljava_lang_String_Handler")>]
abstract member GetApplicationEnabledSetting : string -> Android.Content.PM.ComponentEnabledState

Parameters

packageName
String

The package name of the application to retrieve.

Returns

Returns the current enabled state for the application.

Attributes

Exceptions

if the named package does not exist.

Remarks

Return the enabled setting for an application. This returns the last value set by #setApplicationEnabledSetting(String, 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.

Java documentation for android.content.pm.PackageManager.getApplicationEnabledSetting(java.lang.String).

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