Use restrictionsprovider framework in Settings.
Bug: 15305103 Change-Id: Ib0147e366fe90de3512d0cc06e2a47ee16012dff
This commit is contained in:
@@ -268,6 +268,8 @@
|
||||
<string name="bluetooth_disconnect_title">Disconnect?</string>
|
||||
<!-- Bluetooth settings. Message for disconnecting from all profiles of a bluetooth device. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_disconnect_all_profiles">This will end your connection with:<br><b><xliff:g id="device_name">%1$s</xliff:g></b></string>
|
||||
<!-- Bluetooth Settings. text displayed when user has restriction DISALLOW_CONFIG_BLUETOOTH [CHAR LIMIT=NONE]-->
|
||||
<string name="bluetooth_empty_list_user_restricted">You don\'t have permission to change Bluetooth settings.</string>
|
||||
|
||||
<!-- Bluetooth Visibility message. This message informs the user that their device is now visible to other bluetooth devices. [CHAR LIMIT=50] -->
|
||||
<string name="bluetooth_is_visible_message"><xliff:g id="device_name">%1$s</xliff:g> is now visible to nearby devices.</string>
|
||||
@@ -5792,6 +5794,9 @@
|
||||
<!-- Full package name of OEM preferred device feedback reporter [DO NOT TRANSLATE] -->
|
||||
<string name="oem_preferred_feedback_reporter" translatable="false"></string>
|
||||
|
||||
<!-- PIN entry dialog title for entering the administrator PIN [CHAR LIMIT=none] -->
|
||||
<string name="restr_pin_enter_admin_pin">Enter administrator PIN</string>
|
||||
|
||||
<!-- Switch On/Off -->
|
||||
<string name="switch_on_text">On</string>
|
||||
<string name="switch_off_text">Off</string>
|
||||
|
@@ -23,62 +23,61 @@ import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.content.RestrictionsManager;
|
||||
import android.os.Bundle;
|
||||
import android.os.PersistableBundle;
|
||||
import android.os.UserManager;
|
||||
import android.preference.CheckBoxPreference;
|
||||
import android.preference.Preference;
|
||||
|
||||
/**
|
||||
* Base class for settings activities that should be pin protected when in restricted mode.
|
||||
* Base class for settings screens that should be pin protected when in restricted mode.
|
||||
* The constructor for this class will take the restriction key that this screen should be
|
||||
* locked by. If {@link UserManager.hasRestrictionsPin()} and
|
||||
* {@link UserManager.hasUserRestriction(String)} returns true for the restriction key, then
|
||||
* the user will have to enter the restrictions pin before seeing the Settings screen.
|
||||
* locked by. If {@link RestrictionsManager.hasRestrictionsProvider()} and
|
||||
* {@link UserManager.hasUserRestriction()}, then the user will have to enter the restrictions
|
||||
* pin before seeing the Settings screen.
|
||||
*
|
||||
* If this settings screen should be pin protected whenever
|
||||
* {@link UserManager.hasUserRestriction(String)} returns true, pass in
|
||||
* {@link RESTRICTIONS_PIN_SET} to the constructor instead of a restrictions key.
|
||||
* {@link RestrictionsManager.hasRestrictionsProvider()} returns true, pass in
|
||||
* {@link RESTRICT_IF_OVERRIDABLE} to the constructor instead of a restrictions key.
|
||||
*/
|
||||
public class RestrictedSettingsFragment extends SettingsPreferenceFragment {
|
||||
|
||||
protected static final String RESTRICTIONS_PIN_SET = "restrictions_pin_set";
|
||||
protected static final String RESTRICT_IF_OVERRIDABLE = "restrict_if_overridable";
|
||||
|
||||
private static final String EXTRA_PREFERENCE = "pref";
|
||||
private static final String EXTRA_CHECKBOX_STATE = "isChecked";
|
||||
// Should be unique across all settings screens that use this.
|
||||
// No RestrictedSettingsFragment screens should use this number in startActivityForResult.
|
||||
private static final int REQUEST_PIN_CHALLENGE = 12309;
|
||||
|
||||
private static final String KEY_CHALLENGE_SUCCEEDED = "chsc";
|
||||
private static final String KEY_CHALLENGE_REQUESTED = "chrq";
|
||||
private static final String KEY_RESUME_ACTION_BUNDLE = "rsmb";
|
||||
|
||||
// If the restriction PIN is entered correctly.
|
||||
private boolean mChallengeSucceeded;
|
||||
private boolean mChallengeRequested;
|
||||
private Bundle mResumeActionBundle;
|
||||
private boolean mScreenToggledOff;
|
||||
|
||||
private UserManager mUserManager;
|
||||
private RestrictionsManager mRestrictionsManager;
|
||||
|
||||
private final String mRestrictionKey;
|
||||
|
||||
private final HashSet<Preference> mProtectedByRestictionsPrefs = new HashSet<Preference>();
|
||||
|
||||
// Receiver to clear pin status when the screen is turned off.
|
||||
private BroadcastReceiver mScreenOffReceiver = new BroadcastReceiver() {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
if (!mChallengeRequested) {
|
||||
mChallengeSucceeded = false;
|
||||
if (shouldBePinProtected(mRestrictionKey)) {
|
||||
ensurePin(null);
|
||||
mChallengeRequested = false;
|
||||
mScreenToggledOff = true;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @param restrictionKey The restriction key to check before pin protecting
|
||||
* this settings page. Pass in {@link RESTRICTIONS_PIN_SET} if it should
|
||||
* be PIN protected whenever a restrictions pin is set. Pass in
|
||||
* null if it should never be PIN protected.
|
||||
* this settings page. Pass in {@link RESTRICT_IF_OVERRIDABLE} if it should
|
||||
* be protected whenever a restrictions provider is set. Pass in
|
||||
* null if it should never be protected.
|
||||
*/
|
||||
public RestrictedSettingsFragment(String restrictionKey) {
|
||||
mRestrictionKey = restrictionKey;
|
||||
@@ -88,12 +87,24 @@ public class RestrictedSettingsFragment extends SettingsPreferenceFragment {
|
||||
public void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
|
||||
mRestrictionsManager = (RestrictionsManager) getSystemService(Context.RESTRICTIONS_SERVICE);
|
||||
mUserManager = (UserManager) getSystemService(Context.USER_SERVICE);
|
||||
|
||||
if (icicle != null) {
|
||||
mChallengeSucceeded = icicle.getBoolean(KEY_CHALLENGE_SUCCEEDED, false);
|
||||
mChallengeRequested = icicle.getBoolean(KEY_CHALLENGE_REQUESTED, false);
|
||||
mResumeActionBundle = icicle.getBundle(KEY_RESUME_ACTION_BUNDLE);
|
||||
} else {
|
||||
mChallengeSucceeded = false;
|
||||
mChallengeRequested = false;
|
||||
}
|
||||
mScreenToggledOff = false;
|
||||
|
||||
IntentFilter offFilter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
|
||||
offFilter.addAction(Intent.ACTION_USER_PRESENT);
|
||||
getActivity().registerReceiver(mScreenOffReceiver, offFilter);
|
||||
|
||||
if (shouldBeProviderProtected(mRestrictionKey)) {
|
||||
ensurePin();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -101,11 +112,8 @@ public class RestrictedSettingsFragment extends SettingsPreferenceFragment {
|
||||
public void onSaveInstanceState(Bundle outState) {
|
||||
super.onSaveInstanceState(outState);
|
||||
|
||||
outState.putBoolean(KEY_CHALLENGE_REQUESTED, mChallengeRequested);
|
||||
if (mResumeActionBundle != null) {
|
||||
outState.putBundle(KEY_RESUME_ACTION_BUNDLE, mResumeActionBundle);
|
||||
}
|
||||
if (getActivity().isChangingConfigurations()) {
|
||||
outState.putBoolean(KEY_CHALLENGE_REQUESTED, mChallengeRequested);
|
||||
outState.putBoolean(KEY_CHALLENGE_SUCCEEDED, mChallengeSucceeded);
|
||||
}
|
||||
}
|
||||
@@ -113,55 +121,28 @@ public class RestrictedSettingsFragment extends SettingsPreferenceFragment {
|
||||
@Override
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
if (shouldBePinProtected(mRestrictionKey)) {
|
||||
ensurePin(null);
|
||||
} else {
|
||||
// If the whole screen is not pin protected, reset mChallengeSucceeded so next
|
||||
// time user uses a protected preference, they are prompted for pin again.
|
||||
mChallengeSucceeded = false;
|
||||
if (mScreenToggledOff) {
|
||||
mScreenToggledOff = false;
|
||||
if(shouldBeProviderProtected(mRestrictionKey)) {
|
||||
ensurePin();
|
||||
}
|
||||
}
|
||||
IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
|
||||
filter.addAction(Intent.ACTION_USER_PRESENT);
|
||||
getActivity().registerReceiver(mScreenOffReceiver, filter);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPause() {
|
||||
super.onPause();
|
||||
public void onDestroy() {
|
||||
getActivity().unregisterReceiver(mScreenOffReceiver);
|
||||
super.onDestroy();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
if (requestCode == REQUEST_PIN_CHALLENGE) {
|
||||
Bundle resumeActionBundle = mResumeActionBundle;
|
||||
mResumeActionBundle = null;
|
||||
mChallengeRequested = false;
|
||||
if (resultCode == Activity.RESULT_OK) {
|
||||
mChallengeSucceeded = true;
|
||||
String prefKey = resumeActionBundle == null ?
|
||||
null : resumeActionBundle.getString(EXTRA_PREFERENCE);
|
||||
if (prefKey != null) {
|
||||
Preference pref = findPreference(prefKey);
|
||||
if (pref != null) {
|
||||
// Make sure the checkbox state is the same as it was when we launched the
|
||||
// pin challenge.
|
||||
if (pref instanceof CheckBoxPreference
|
||||
&& resumeActionBundle.containsKey(EXTRA_CHECKBOX_STATE)) {
|
||||
boolean isChecked =
|
||||
resumeActionBundle.getBoolean(EXTRA_CHECKBOX_STATE, false);
|
||||
((CheckBoxPreference)pref).setChecked(isChecked);
|
||||
}
|
||||
if (!onPreferenceTreeClick(getPreferenceScreen(), pref)) {
|
||||
Intent prefIntent = pref.getIntent();
|
||||
if (prefIntent != null) {
|
||||
pref.getContext().startActivity(prefIntent);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (!isDetached()) {
|
||||
finishFragment();
|
||||
mChallengeRequested = false;
|
||||
} else {
|
||||
mChallengeSucceeded = false;
|
||||
}
|
||||
return;
|
||||
}
|
||||
@@ -169,93 +150,54 @@ public class RestrictedSettingsFragment extends SettingsPreferenceFragment {
|
||||
super.onActivityResult(requestCode, resultCode, data);
|
||||
}
|
||||
|
||||
private void ensurePin(Preference preference) {
|
||||
if (!mChallengeSucceeded) {
|
||||
final UserManager um = UserManager.get(getActivity());
|
||||
if (!mChallengeRequested) {
|
||||
if (um.hasRestrictionsChallenge()) {
|
||||
mResumeActionBundle = new Bundle();
|
||||
if (preference != null) {
|
||||
mResumeActionBundle.putString(EXTRA_PREFERENCE, preference.getKey());
|
||||
if (preference instanceof CheckBoxPreference) {
|
||||
mResumeActionBundle.putBoolean(EXTRA_CHECKBOX_STATE,
|
||||
((CheckBoxPreference)preference).isChecked());
|
||||
}
|
||||
}
|
||||
Intent requestPin = new Intent(Intent.ACTION_RESTRICTIONS_CHALLENGE);
|
||||
startActivityForResult(requestPin, REQUEST_PIN_CHALLENGE);
|
||||
private void ensurePin() {
|
||||
if (!mChallengeSucceeded && !mChallengeRequested
|
||||
&& mRestrictionsManager.hasRestrictionsProvider()) {
|
||||
Intent intent = mRestrictionsManager.getLocalApprovalIntent();
|
||||
if (intent != null) {
|
||||
mChallengeRequested = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
mChallengeSucceeded = false;
|
||||
PersistableBundle request = new PersistableBundle();
|
||||
request.putString(RestrictionsManager.REQUEST_KEY_MESSAGE,
|
||||
getResources().getString(R.string.restr_pin_enter_admin_pin));
|
||||
intent.putExtra(RestrictionsManager.EXTRA_REQUEST_BUNDLE, request);
|
||||
startActivityForResult(intent, REQUEST_PIN_CHALLENGE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if this activity is restricted, but no restriction pin has been set.
|
||||
* Returns true if this activity is restricted, but no restrictions provider has been set.
|
||||
* Used to determine if the settings UI should disable UI.
|
||||
*/
|
||||
protected boolean isRestrictedAndNotPinProtected() {
|
||||
if (mRestrictionKey == null || RESTRICTIONS_PIN_SET.equals(mRestrictionKey)) {
|
||||
protected boolean isRestrictedAndNotProviderProtected() {
|
||||
if (mRestrictionKey == null || RESTRICT_IF_OVERRIDABLE.equals(mRestrictionKey)) {
|
||||
return false;
|
||||
}
|
||||
return mUserManager.hasUserRestriction(mRestrictionKey)
|
||||
&& !mUserManager.hasRestrictionsChallenge();
|
||||
}
|
||||
|
||||
/**
|
||||
* Called to trigger the pin entry if the given restriction key is locked down.
|
||||
* @param restrictionsKey The restriction key or {@link RESTRICTIONS_PIN_SET} if
|
||||
* pin entry should get triggered if there is a pin set.
|
||||
*/
|
||||
protected boolean restrictionsPinCheck(String restrictionsKey, Preference preference) {
|
||||
if (shouldBePinProtected(restrictionsKey) && !mChallengeSucceeded) {
|
||||
ensurePin(preference);
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
&& !mRestrictionsManager.hasRestrictionsProvider();
|
||||
}
|
||||
|
||||
protected boolean hasChallengeSucceeded() {
|
||||
return mChallengeSucceeded;
|
||||
return (mChallengeRequested && mChallengeSucceeded) || !mChallengeRequested;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if this restrictions key is locked down.
|
||||
*/
|
||||
protected boolean shouldBePinProtected(String restrictionKey) {
|
||||
protected boolean shouldBeProviderProtected(String restrictionKey) {
|
||||
if (restrictionKey == null) {
|
||||
return false;
|
||||
}
|
||||
boolean restricted = RESTRICTIONS_PIN_SET.equals(restrictionKey)
|
||||
|| mUserManager.hasUserRestriction(restrictionKey);
|
||||
return restricted && mUserManager.hasRestrictionsChallenge();
|
||||
boolean restricted = RESTRICT_IF_OVERRIDABLE.equals(restrictionKey)
|
||||
|| mUserManager.hasUserRestriction(mRestrictionKey);
|
||||
return restricted && mRestrictionsManager.hasRestrictionsProvider();
|
||||
}
|
||||
|
||||
/**
|
||||
* If the preference is one that was added by protectByRestrictions(), then it will
|
||||
* prompt the user for the restrictions pin if they haven't entered it already.
|
||||
* Intended to be called at the top of onPreferenceTreeClick. If this function returns
|
||||
* true, then onPreferenceTreeClick should return true.
|
||||
* Returns whether restricted or actionable UI elements should be removed or disabled.
|
||||
*/
|
||||
boolean ensurePinRestrictedPreference(Preference preference) {
|
||||
return mProtectedByRestictionsPrefs.contains(preference)
|
||||
&& !restrictionsPinCheck(RESTRICTIONS_PIN_SET, preference);
|
||||
}
|
||||
|
||||
/**
|
||||
* Call this with any preferences that should require the PIN to be entered
|
||||
* before they are accessible.
|
||||
*/
|
||||
protected void protectByRestrictions(Preference pref) {
|
||||
if (pref != null) {
|
||||
mProtectedByRestictionsPrefs.add(pref);
|
||||
}
|
||||
}
|
||||
|
||||
protected void protectByRestrictions(String key) {
|
||||
Preference pref = findPreference(key);
|
||||
protectByRestrictions(pref);
|
||||
protected boolean isUiRestricted() {
|
||||
return isRestrictedAndNotProviderProtected() || !hasChallengeSucceeded();
|
||||
}
|
||||
}
|
||||
|
@@ -140,6 +140,13 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
}
|
||||
super.onResume();
|
||||
|
||||
if (isUiRestricted()) {
|
||||
setDeviceListGroup(getPreferenceScreen());
|
||||
removeAllDevices();
|
||||
mEmptyView.setText(R.string.bluetooth_empty_list_user_restricted);
|
||||
return;
|
||||
}
|
||||
|
||||
getActivity().registerReceiver(mReceiver, mIntentFilter);
|
||||
if (mLocalAdapter != null) {
|
||||
updateContent(mLocalAdapter.getBluetoothState(), mActivityStarted);
|
||||
@@ -155,6 +162,11 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
if (mBluetoothEnabler != null) {
|
||||
mBluetoothEnabler.pause();
|
||||
}
|
||||
|
||||
if (isUiRestricted()) {
|
||||
return;
|
||||
}
|
||||
|
||||
getActivity().unregisterReceiver(mReceiver);
|
||||
|
||||
// Make the device only visible to connected devices.
|
||||
@@ -165,7 +177,7 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||
if (mLocalAdapter == null) return;
|
||||
// If the user is not allowed to configure bluetooth, do not show the menu.
|
||||
if (isRestrictedAndNotPinProtected()) return;
|
||||
if (isUiRestricted()) return;
|
||||
|
||||
boolean bluetoothIsEnabled = mLocalAdapter.getBluetoothState() == BluetoothAdapter.STATE_ON;
|
||||
boolean isDiscovering = mLocalAdapter.isDiscovering();
|
||||
@@ -219,7 +231,7 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
}
|
||||
|
||||
private void startScanning() {
|
||||
if (isRestrictedAndNotPinProtected()) return;
|
||||
if (isUiRestricted()) return;
|
||||
if (!mAvailableDevicesCategoryIsPresent) {
|
||||
getPreferenceScreen().addPreference(mAvailableDevicesCategory);
|
||||
}
|
||||
@@ -252,6 +264,11 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
preferenceScreen.setOrderingAsAdded(true);
|
||||
mDevicePreferenceMap.clear();
|
||||
|
||||
if (isUiRestricted()) {
|
||||
messageId = R.string.bluetooth_empty_list_user_restricted;
|
||||
break;
|
||||
}
|
||||
|
||||
// Paired devices category
|
||||
if (mPairedDevicesCategory == null) {
|
||||
mPairedDevicesCategory = new PreferenceCategory(getActivity());
|
||||
@@ -270,11 +287,9 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
} else {
|
||||
mAvailableDevicesCategory.removeAll();
|
||||
}
|
||||
if (!isRestrictedAndNotPinProtected()) {
|
||||
addDeviceCategory(mAvailableDevicesCategory,
|
||||
R.string.bluetooth_preference_found_devices,
|
||||
BluetoothDeviceFilter.UNBONDED_DEVICE_FILTER);
|
||||
}
|
||||
int numberOfAvailableDevices = mAvailableDevicesCategory.getPreferenceCount();
|
||||
mAvailableDevicesCategoryIsPresent = true;
|
||||
|
||||
@@ -313,6 +328,9 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
|
||||
case BluetoothAdapter.STATE_OFF:
|
||||
messageId = R.string.bluetooth_empty_list_bluetooth_off;
|
||||
if (isUiRestricted()) {
|
||||
messageId = R.string.bluetooth_empty_list_user_restricted;
|
||||
}
|
||||
break;
|
||||
|
||||
case BluetoothAdapter.STATE_TURNING_ON:
|
||||
@@ -323,8 +341,10 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
setDeviceListGroup(preferenceScreen);
|
||||
removeAllDevices();
|
||||
mEmptyView.setText(messageId);
|
||||
if (!isUiRestricted()) {
|
||||
getActivity().invalidateOptionsMenu();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBluetoothStateChanged(int bluetoothState) {
|
||||
@@ -336,8 +356,10 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
public void onScanningStateChanged(boolean started) {
|
||||
super.onScanningStateChanged(started);
|
||||
// Update options' enabled state
|
||||
if (getActivity() != null) {
|
||||
getActivity().invalidateOptionsMenu();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeviceBondStateChanged(CachedBluetoothDevice cachedDevice, int bondState) {
|
||||
@@ -350,7 +372,7 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment implem
|
||||
public void onClick(View v) {
|
||||
// User clicked on advanced options icon for a device in the list
|
||||
if (v.getTag() instanceof CachedBluetoothDevice) {
|
||||
if (isRestrictedAndNotPinProtected()) return;
|
||||
if (isUiRestricted()) return;
|
||||
|
||||
CachedBluetoothDevice device = (CachedBluetoothDevice) v.getTag();
|
||||
|
||||
|
@@ -96,7 +96,7 @@ public abstract class DeviceListPreferenceFragment extends
|
||||
@Override
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
if (mLocalManager == null) return;
|
||||
if (mLocalManager == null || isUiRestricted()) return;
|
||||
|
||||
mLocalManager.setForegroundActivity(getActivity());
|
||||
mLocalManager.getEventManager().registerCallback(this);
|
||||
@@ -107,7 +107,9 @@ public abstract class DeviceListPreferenceFragment extends
|
||||
@Override
|
||||
public void onPause() {
|
||||
super.onPause();
|
||||
if (mLocalManager == null) return;
|
||||
if (mLocalManager == null || isUiRestricted()) {
|
||||
return;
|
||||
}
|
||||
|
||||
removeAllDevices();
|
||||
mLocalManager.setForegroundActivity(null);
|
||||
|
@@ -442,7 +442,7 @@ public class WifiSettings extends RestrictedSettingsFragment
|
||||
@Override
|
||||
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||
// If the user is not allowed to configure wifi, do not show the menu.
|
||||
if (isRestrictedAndNotPinProtected()) return;
|
||||
if (isUiRestricted()) return;
|
||||
|
||||
addOptionsMenuItems(menu);
|
||||
super.onCreateOptionsMenu(menu, inflater);
|
||||
@@ -491,7 +491,7 @@ public class WifiSettings extends RestrictedSettingsFragment
|
||||
@Override
|
||||
public boolean onOptionsItemSelected(MenuItem item) {
|
||||
// If the user is not allowed to configure wifi, do not handle menu selections.
|
||||
if (isRestrictedAndNotPinProtected()) return false;
|
||||
if (isUiRestricted()) return false;
|
||||
|
||||
switch (item.getItemId()) {
|
||||
case MENU_ID_WPS_PBC:
|
||||
@@ -686,7 +686,7 @@ public class WifiSettings extends RestrictedSettingsFragment
|
||||
// Safeguard from some delayed event handling
|
||||
if (getActivity() == null) return;
|
||||
|
||||
if (isRestrictedAndNotPinProtected()) {
|
||||
if (isUiRestricted()) {
|
||||
addMessagePreference(R.string.wifi_empty_list_user_restricted);
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user