Test: atest SettingsUnitTests Bug: 215517420 Change-Id: Ic5421cd910ae77d4e7c0a29ae0337edb98a1d3b9
111 lines
3.6 KiB
Java
111 lines
3.6 KiB
Java
/*
|
|
* Copyright (C) 2018 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.biometrics.fingerprint;
|
|
|
|
import android.content.Context;
|
|
import android.hardware.fingerprint.FingerprintManager;
|
|
|
|
import androidx.annotation.Nullable;
|
|
import androidx.lifecycle.Lifecycle;
|
|
import androidx.lifecycle.LifecycleObserver;
|
|
import androidx.lifecycle.OnLifecycleEvent;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.internal.annotations.VisibleForTesting;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.biometrics.BiometricStatusPreferenceController;
|
|
import com.android.settingslib.RestrictedLockUtils;
|
|
import com.android.settingslib.RestrictedPreference;
|
|
|
|
public class FingerprintStatusPreferenceController extends BiometricStatusPreferenceController
|
|
implements LifecycleObserver {
|
|
|
|
private static final String KEY_FINGERPRINT_SETTINGS = "fingerprint_settings";
|
|
|
|
protected final FingerprintManager mFingerprintManager;
|
|
@VisibleForTesting
|
|
RestrictedPreference mPreference;
|
|
private final FingerprintStatusUtils mFingerprintStatusUtils;
|
|
|
|
public FingerprintStatusPreferenceController(Context context) {
|
|
this(context, KEY_FINGERPRINT_SETTINGS);
|
|
}
|
|
|
|
public FingerprintStatusPreferenceController(Context context, String key) {
|
|
this(context, key, null /* lifecycle */);
|
|
}
|
|
|
|
public FingerprintStatusPreferenceController(Context context, Lifecycle lifecycle) {
|
|
this(context, KEY_FINGERPRINT_SETTINGS, lifecycle);
|
|
}
|
|
|
|
public FingerprintStatusPreferenceController(Context context, String key, Lifecycle lifecycle) {
|
|
super(context, key);
|
|
mFingerprintManager = Utils.getFingerprintManagerOrNull(context);
|
|
mFingerprintStatusUtils =
|
|
new FingerprintStatusUtils(context, mFingerprintManager);
|
|
|
|
if (lifecycle != null) {
|
|
lifecycle.addObserver(this);
|
|
}
|
|
}
|
|
|
|
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
|
|
public void onResume() {
|
|
updateStateInternal();
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
mPreference = screen.findPreference(mPreferenceKey);
|
|
}
|
|
|
|
@Override
|
|
protected boolean isDeviceSupported() {
|
|
return mFingerprintStatusUtils.isAvailable();
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
super.updateState(preference);
|
|
updateStateInternal();
|
|
}
|
|
|
|
private void updateStateInternal() {
|
|
updateStateInternal(mFingerprintStatusUtils.getDisablingAdmin());
|
|
}
|
|
|
|
@Override
|
|
protected String getSummaryText() {
|
|
return mFingerprintStatusUtils.getSummary();
|
|
}
|
|
|
|
@Override
|
|
protected String getSettingsClassName() {
|
|
return mFingerprintStatusUtils.getSettingsClassName();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
void updateStateInternal(@Nullable RestrictedLockUtils.EnforcedAdmin enforcedAdmin) {
|
|
if (mPreference != null) {
|
|
mPreference.setDisabledByAdmin(enforcedAdmin);
|
|
}
|
|
}
|
|
}
|