Use the new PermissionControllerManager API to get the number of unused apps directly from PermissionController instead of replicating the logic Bug: 200087723 Test: atest HibernatedAppsPreferenceControllerTest Change-Id: I989219cfb2a44b5acb054ff5fb744e68d8e118b3
113 lines
3.7 KiB
Java
113 lines
3.7 KiB
Java
/*
|
|
* Copyright (C) 2021 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.applications;
|
|
|
|
import static android.provider.DeviceConfig.NAMESPACE_APP_HIBERNATION;
|
|
|
|
import static com.android.settings.Utils.PROPERTY_APP_HIBERNATION_ENABLED;
|
|
|
|
import android.content.Context;
|
|
import android.permission.PermissionControllerManager;
|
|
import android.provider.DeviceConfig;
|
|
|
|
import androidx.lifecycle.Lifecycle;
|
|
import androidx.lifecycle.LifecycleObserver;
|
|
import androidx.lifecycle.OnLifecycleEvent;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.BasePreferenceController;
|
|
|
|
import com.google.common.annotations.VisibleForTesting;
|
|
|
|
import java.util.concurrent.Executor;
|
|
|
|
/**
|
|
* A preference controller handling the logic for updating summary of hibernated apps.
|
|
*/
|
|
public final class HibernatedAppsPreferenceController extends BasePreferenceController
|
|
implements LifecycleObserver {
|
|
private static final String TAG = "HibernatedAppsPrefController";
|
|
private PreferenceScreen mScreen;
|
|
private int mUnusedCount = 0;
|
|
private boolean mLoadingUnusedApps;
|
|
private boolean mLoadedUnusedCount;
|
|
private final Executor mMainExecutor;
|
|
|
|
public HibernatedAppsPreferenceController(Context context, String preferenceKey) {
|
|
this(context, preferenceKey, context.getMainExecutor());
|
|
}
|
|
|
|
@VisibleForTesting
|
|
HibernatedAppsPreferenceController(Context context, String preferenceKey,
|
|
Executor mainExecutor) {
|
|
super(context, preferenceKey);
|
|
mMainExecutor = mainExecutor;
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return isHibernationEnabled() ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
return mLoadedUnusedCount
|
|
? mContext.getResources().getQuantityString(
|
|
R.plurals.unused_apps_summary, mUnusedCount, mUnusedCount)
|
|
: mContext.getResources().getString(R.string.summary_placeholder);
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
mScreen = screen;
|
|
}
|
|
|
|
/**
|
|
* On lifecycle resume event.
|
|
*/
|
|
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
|
|
public void onResume() {
|
|
updatePreference();
|
|
}
|
|
|
|
private void updatePreference() {
|
|
if (mScreen == null) {
|
|
return;
|
|
}
|
|
if (!mLoadingUnusedApps) {
|
|
final PermissionControllerManager permController =
|
|
mContext.getSystemService(PermissionControllerManager.class);
|
|
permController.getUnusedAppCount(mMainExecutor, unusedCount -> {
|
|
mUnusedCount = unusedCount;
|
|
mLoadingUnusedApps = false;
|
|
mLoadedUnusedCount = true;
|
|
Preference pref = mScreen.findPreference(mPreferenceKey);
|
|
refreshSummary(pref);
|
|
});
|
|
mLoadingUnusedApps = true;
|
|
}
|
|
}
|
|
|
|
private static boolean isHibernationEnabled() {
|
|
return DeviceConfig.getBoolean(
|
|
NAMESPACE_APP_HIBERNATION, PROPERTY_APP_HIBERNATION_ENABLED, true);
|
|
}
|
|
}
|