- Count apps in both primary and work profiles - Show the number of any location permitted app instead of background allowed apps on Location settings page - Update the text at the top-level settings page Bug: 129296799 Bug: 129358133 Bug: 129358508 Bug: 131432116 Test: build, flash, and test manually Change-Id: I1a4284257a8a284140b81685efc98a2cc4a74619
135 lines
5.2 KiB
Java
135 lines
5.2 KiB
Java
package com.android.settings.location;
|
|
|
|
import static android.Manifest.permission.ACCESS_COARSE_LOCATION;
|
|
import static android.Manifest.permission.ACCESS_FINE_LOCATION;
|
|
|
|
import android.content.Context;
|
|
import android.location.LocationManager;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
import android.permission.PermissionControllerManager;
|
|
import android.provider.Settings;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.Preference;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.core.PreferenceControllerMixin;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
public class AppLocationPermissionPreferenceController extends
|
|
LocationBasePreferenceController implements PreferenceControllerMixin {
|
|
|
|
private static final String KEY_APP_LEVEL_PERMISSIONS = "app_level_permissions";
|
|
/** Total number of apps that has location permission. */
|
|
@VisibleForTesting
|
|
int mNumTotal = -1;
|
|
/** Total number of apps that has background location permission. */
|
|
@VisibleForTesting
|
|
int mNumHasLocation = -1;
|
|
|
|
final AtomicInteger loadingInProgress = new AtomicInteger(0);
|
|
private int mNumTotalLoading = 0;
|
|
private int mNumHasLocationLoading = 0;
|
|
|
|
private final LocationManager mLocationManager;
|
|
private Preference mPreference;
|
|
|
|
public AppLocationPermissionPreferenceController(Context context, Lifecycle lifecycle) {
|
|
super(context, lifecycle);
|
|
mLocationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY_APP_LEVEL_PERMISSIONS;
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
return Settings.Global.getInt(mContext.getContentResolver(),
|
|
Settings.Global.LOCATION_SETTINGS_LINK_TO_PERMISSIONS_ENABLED, 1) == 1;
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
if (mLocationManager.isLocationEnabled()) {
|
|
if (mNumTotal == -1 || mNumHasLocation == -1) {
|
|
return mContext.getString(R.string.location_settings_loading_app_permission_stats);
|
|
}
|
|
return mContext.getResources().getQuantityString(
|
|
R.plurals.location_app_permission_summary_location_on, mNumHasLocation,
|
|
mNumHasLocation, mNumTotal);
|
|
} else {
|
|
return mContext.getString(R.string.location_app_permission_summary_location_off);
|
|
}
|
|
}
|
|
|
|
private void setAppCounts(int numTotal, int numHasLocation) {
|
|
mNumTotal = numTotal;
|
|
mNumHasLocation = numHasLocation;
|
|
refreshSummary(mPreference);
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
super.updateState(preference);
|
|
mPreference = preference;
|
|
refreshSummary(preference);
|
|
// Bail out if location has been disabled, or there's another loading request in progress.
|
|
if (!mLocationManager.isLocationEnabled() ||
|
|
loadingInProgress.get() != 0) {
|
|
return;
|
|
}
|
|
mNumTotalLoading = 0;
|
|
mNumHasLocationLoading = 0;
|
|
// Retrieve a list of users inside the current user profile group.
|
|
final List<UserHandle> users = mContext.getSystemService(
|
|
UserManager.class).getUserProfiles();
|
|
loadingInProgress.set(2 * users.size());
|
|
for (UserHandle user : users) {
|
|
final Context userContext = Utils.createPackageContextAsUser(mContext,
|
|
user.getIdentifier());
|
|
if (userContext == null) {
|
|
for (int i = 0; i < 2; ++i) {
|
|
if (loadingInProgress.decrementAndGet() == 0) {
|
|
setAppCounts(mNumTotalLoading, mNumHasLocationLoading);
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
final PermissionControllerManager permController =
|
|
userContext.getSystemService(PermissionControllerManager.class);
|
|
permController.countPermissionApps(
|
|
Arrays.asList(ACCESS_FINE_LOCATION, ACCESS_COARSE_LOCATION), 0,
|
|
(numApps) -> {
|
|
mNumTotalLoading += numApps;
|
|
if (loadingInProgress.decrementAndGet() == 0) {
|
|
setAppCounts(mNumTotalLoading, mNumHasLocationLoading);
|
|
}
|
|
}, null);
|
|
permController.countPermissionApps(
|
|
Arrays.asList(ACCESS_FINE_LOCATION, ACCESS_COARSE_LOCATION),
|
|
PermissionControllerManager.COUNT_ONLY_WHEN_GRANTED,
|
|
(numApps) -> {
|
|
mNumHasLocationLoading += numApps;
|
|
if (loadingInProgress.decrementAndGet() == 0) {
|
|
setAppCounts(mNumTotalLoading, mNumHasLocationLoading);
|
|
}
|
|
}, null);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onLocationModeChanged(int mode, boolean restricted) {
|
|
if (mPreference != null) {
|
|
updateState(mPreference);
|
|
}
|
|
}
|
|
}
|