After working through a prototype here: (ag/3324435) it is clear that we don't need the controller to provider the slice. We will build an index that will contain sufficent UI information, and a reference to the controller. At Slice Bind time, we can get the curret value from the controller, and the UI information from the Index. Bug: 67996923 Test: robotests Change-Id: Id43a51bcd73051bc719cd5829907583e0edf23b2
113 lines
4.4 KiB
Java
113 lines
4.4 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.applications.appinfo;
|
|
|
|
import android.content.ActivityNotFoundException;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.res.Resources;
|
|
import android.icu.text.ListFormatter;
|
|
import android.support.annotation.VisibleForTesting;
|
|
import android.support.v7.preference.Preference;
|
|
import android.util.Log;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.applications.AppInfoDashboardFragment;
|
|
import com.android.settingslib.applications.PermissionsSummaryHelper;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class AppPermissionPreferenceController extends AppInfoPreferenceControllerBase {
|
|
|
|
private static final String TAG = "PermissionPrefControl";
|
|
private static final String KEY_PERMISSION = "permission_settings";
|
|
private static final String EXTRA_HIDE_INFO_BUTTON = "hideInfoButton";
|
|
|
|
private final String mPackageName;
|
|
|
|
@VisibleForTesting
|
|
final PermissionsSummaryHelper.PermissionsResultCallback mPermissionCallback
|
|
= new PermissionsSummaryHelper.PermissionsResultCallback() {
|
|
@Override
|
|
public void onPermissionSummaryResult(int standardGrantedPermissionCount,
|
|
int requestedPermissionCount, int additionalGrantedPermissionCount,
|
|
List<CharSequence> grantedGroupLabels) {
|
|
if (mParent.getActivity() == null) {
|
|
return;
|
|
}
|
|
final Resources res = mContext.getResources();
|
|
CharSequence summary = null;
|
|
|
|
if (requestedPermissionCount == 0) {
|
|
summary = res.getString(
|
|
R.string.runtime_permissions_summary_no_permissions_requested);
|
|
mPreference.setEnabled(false);
|
|
} else {
|
|
final ArrayList<CharSequence> list = new ArrayList<>(grantedGroupLabels);
|
|
if (additionalGrantedPermissionCount > 0) {
|
|
// N additional permissions.
|
|
list.add(res.getQuantityString(
|
|
R.plurals.runtime_permissions_additional_count,
|
|
additionalGrantedPermissionCount, additionalGrantedPermissionCount));
|
|
}
|
|
if (list.size() == 0) {
|
|
summary = res.getString(
|
|
R.string.runtime_permissions_summary_no_permissions_granted);
|
|
} else {
|
|
summary = ListFormatter.getInstance().format(list);
|
|
}
|
|
mPreference.setEnabled(true);
|
|
}
|
|
mPreference.setSummary(summary);
|
|
}
|
|
};
|
|
|
|
public AppPermissionPreferenceController(Context context, AppInfoDashboardFragment parent,
|
|
String packageName) {
|
|
super(context, parent, KEY_PERMISSION);
|
|
mPackageName = packageName;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
PermissionsSummaryHelper.getPermissionSummary(mContext, mPackageName, mPermissionCallback);
|
|
}
|
|
|
|
@Override
|
|
public boolean handlePreferenceTreeClick(Preference preference) {
|
|
if (KEY_PERMISSION.equals(preference.getKey())) {
|
|
startManagePermissionsActivity();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void startManagePermissionsActivity() {
|
|
// start new activity to manage app permissions
|
|
final Intent intent = new Intent(Intent.ACTION_MANAGE_APP_PERMISSIONS);
|
|
intent.putExtra(Intent.EXTRA_PACKAGE_NAME, mParent.getAppEntry().info.packageName);
|
|
intent.putExtra(EXTRA_HIDE_INFO_BUTTON, true);
|
|
try {
|
|
mParent.getActivity().startActivityForResult(intent, mParent.SUB_INFO_FRAGMENT);
|
|
} catch (ActivityNotFoundException e) {
|
|
Log.w(TAG, "No app can handle android.intent.action.MANAGE_APP_PERMISSIONS");
|
|
}
|
|
}
|
|
|
|
}
|