This CL adds information about the number of apps that were installed by the admin to the Enterprise Privacy Settings page. Test: make RunSettingsRoboTests Bug: 32692748 Change-Id: Ib710a1249db6d285da962122fd3dfb35a43752a1
64 lines
2.3 KiB
Java
64 lines
2.3 KiB
Java
/*
|
|
* Copyright (C) 2017 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.enterprise;
|
|
|
|
import android.content.Context;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.res.Resources;
|
|
import android.support.v7.preference.Preference;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.applications.ApplicationFeatureProvider;
|
|
import com.android.settings.core.PreferenceController;
|
|
import com.android.settings.overlay.FeatureFactory;
|
|
|
|
public class EnterpriseInstalledPackagesPreferenceController extends PreferenceController {
|
|
|
|
private static final String KEY_NUMBER_ENTERPRISE_INSTALLED_PACKAGES
|
|
= "number_enterprise_installed_packages";
|
|
private final ApplicationFeatureProvider mFeatureProvider;
|
|
|
|
public EnterpriseInstalledPackagesPreferenceController(Context context) {
|
|
super(context);
|
|
mFeatureProvider = FeatureFactory.getFactory(context)
|
|
.getApplicationFeatureProvider(context);
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
mFeatureProvider.calculateNumberOfInstalledApps(
|
|
PackageManager.INSTALL_REASON_POLICY,
|
|
(num) -> {
|
|
if (num == 0) {
|
|
preference.setVisible(false);
|
|
} else {
|
|
preference.setVisible(true);
|
|
preference.setTitle(mContext.getResources().getQuantityString(
|
|
R.plurals.enterprise_privacy_number_enterprise_installed_packages,
|
|
num, num));
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY_NUMBER_ENTERPRISE_INSTALLED_PACKAGES;
|
|
}
|
|
}
|