diff options
author | Dianne Hackborn <hackbod@google.com> | 2013-01-22 17:10:23 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2013-01-22 17:10:23 -0800 |
commit | fd7adedebf88427162a3ce27fcc9cfd3893c869d (patch) | |
tree | d9dfb04e5d0972a6ae7bf92431b0d48925e97b48 /api | |
parent | cc7433470f00fac3bbe7835de3ded4b9bf121244 (diff) | |
download | frameworks_base-fd7adedebf88427162a3ce27fcc9cfd3893c869d.zip frameworks_base-fd7adedebf88427162a3ce27fcc9cfd3893c869d.tar.gz frameworks_base-fd7adedebf88427162a3ce27fcc9cfd3893c869d.tar.bz2 |
Add new disabled state for "optional" built-in apps.
The disabled state allows you to make an app disabled
except for whatever parts of the system still want to
provide access to them and automatically enable them
if the user want to use it.
Currently the input method manager service is the only
part of the system that supports this, so you can put
an IME in this state and it will generally look disabled
but still be available in the IME list and once selected
switched to the enabled state.
Change-Id: I77f01c70610d82ce9070d4aabbadec8ae2cff2a3
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index d367a00..1995416 100644 --- a/api/current.txt +++ b/api/current.txt @@ -6627,6 +6627,7 @@ package android.content.pm { method public abstract void verifyPendingInstall(int, int); field public static final int COMPONENT_ENABLED_STATE_DEFAULT = 0; // 0x0 field public static final int COMPONENT_ENABLED_STATE_DISABLED = 2; // 0x2 + field public static final int COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED = 4; // 0x4 field public static final int COMPONENT_ENABLED_STATE_DISABLED_USER = 3; // 0x3 field public static final int COMPONENT_ENABLED_STATE_ENABLED = 1; // 0x1 field public static final int DONT_KILL_APP = 1; // 0x1 @@ -6673,6 +6674,7 @@ package android.content.pm { field public static final int GET_ACTIVITIES = 1; // 0x1 field public static final int GET_CONFIGURATIONS = 16384; // 0x4000 field public static final int GET_DISABLED_COMPONENTS = 512; // 0x200 + field public static final int GET_DISABLED_UNTIL_USED_COMPONENTS = 32768; // 0x8000 field public static final int GET_GIDS = 256; // 0x100 field public static final int GET_INSTRUMENTATION = 16; // 0x10 field public static final int GET_INTENT_FILTERS = 32; // 0x20 |