diff options
author | Jason Monk <jmonk@google.com> | 2015-07-23 20:23:09 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-07-23 20:23:09 +0000 |
commit | 9927acd3ad67ce2cc20e9f9c06af442f6ba69c8f (patch) | |
tree | ba1b27b9df9e443e1c432176243ad3d688ffc6fe | |
parent | c1bef7430e1c49b9c3b2312328d3600261109ee8 (diff) | |
parent | 94f9c824c42f209f363c3ae8d637c909790e36b5 (diff) | |
download | packages_apps_Settings-9927acd3ad67ce2cc20e9f9c06af442f6ba69c8f.zip packages_apps_Settings-9927acd3ad67ce2cc20e9f9c06af442f6ba69c8f.tar.gz packages_apps_Settings-9927acd3ad67ce2cc20e9f9c06af442f6ba69c8f.tar.bz2 |
Merge "Don't show disabled apps in ignore optimizations" into mnc-dev
-rw-r--r-- | src/com/android/settings/applications/ManageApplications.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/com/android/settings/applications/ManageApplications.java b/src/com/android/settings/applications/ManageApplications.java index 3820123..ce2dbe0 100644 --- a/src/com/android/settings/applications/ManageApplications.java +++ b/src/com/android/settings/applications/ManageApplications.java @@ -152,8 +152,10 @@ public class ManageApplications extends InstrumentedFragment // This is the actual mapping to filters from FILTER_ constants above, the order must // be kept in sync. public static final AppFilter[] FILTERS = new AppFilter[] { - AppStatePowerBridge.FILTER_POWER_WHITELISTED, // High power whitelist, on - ApplicationsState.FILTER_PERSONAL, // All apps label, but personal filter + new CompoundFilter(AppStatePowerBridge.FILTER_POWER_WHITELISTED, + ApplicationsState.FILTER_ALL_ENABLED), // High power whitelist, on + new CompoundFilter(ApplicationsState.FILTER_PERSONAL, + ApplicationsState.FILTER_ALL_ENABLED), // All apps label, but personal filter ApplicationsState.FILTER_EVERYTHING, // All apps ApplicationsState.FILTER_ALL_ENABLED, // Enabled ApplicationsState.FILTER_DISABLED, // Disabled @@ -617,6 +619,9 @@ public class ManageApplications extends InstrumentedFragment } public void setHasDisabled(boolean hasDisabledApps) { + if (mListType == LIST_TYPE_HIGH_POWER) { + return; + } mFilterAdapter.setFilterEnabled(FILTER_APPS_ENABLED, hasDisabledApps); mFilterAdapter.setFilterEnabled(FILTER_APPS_DISABLED, hasDisabledApps); } |