Display strings based on number of enrollments Bug: 185804815 Test: manual on-device Change-Id: I47be2a53b37c36b3136cd233001db7cadf123ae9
104 lines
3.8 KiB
Java
104 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2021 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.combination;
|
|
|
|
import android.content.Context;
|
|
import android.hardware.face.FaceManager;
|
|
import android.hardware.fingerprint.FingerprintManager;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.Settings;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.biometrics.BiometricStatusPreferenceController;
|
|
|
|
/**
|
|
* Preference controller for biometrics settings page controlling the ability to unlock the phone
|
|
* with face and fingerprint.
|
|
*/
|
|
public class CombinedBiometricStatusPreferenceController extends
|
|
BiometricStatusPreferenceController {
|
|
private static final String KEY_BIOMETRIC_SETTINGS = "biometric_settings";
|
|
|
|
@Nullable
|
|
FingerprintManager mFingerprintManager;
|
|
@Nullable
|
|
FaceManager mFaceManager;
|
|
|
|
public CombinedBiometricStatusPreferenceController(Context context) {
|
|
this(context, KEY_BIOMETRIC_SETTINGS);
|
|
}
|
|
|
|
public CombinedBiometricStatusPreferenceController(Context context, String key) {
|
|
super(context, key);
|
|
mFingerprintManager = Utils.getFingerprintManagerOrNull(context);
|
|
mFaceManager = Utils.getFaceManagerOrNull(context);
|
|
}
|
|
|
|
@Override
|
|
protected boolean isDeviceSupported() {
|
|
return Utils.hasFingerprintHardware(mContext) && Utils.hasFaceHardware(mContext);
|
|
}
|
|
|
|
@Override
|
|
protected boolean hasEnrolledBiometrics() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
protected String getSummaryTextEnrolled() {
|
|
// Note that this is currently never called (see the super class)
|
|
return mContext.getString(
|
|
R.string.security_settings_biometric_preference_summary_none_enrolled);
|
|
}
|
|
|
|
@Override
|
|
protected String getSummaryTextNoneEnrolled() {
|
|
final int numFingerprintsEnrolled = mFingerprintManager != null ?
|
|
mFingerprintManager.getEnrolledFingerprints(getUserId()).size() : 0;
|
|
final boolean faceEnrolled = mFaceManager != null
|
|
&& mFaceManager.hasEnrolledTemplates(getUserId());
|
|
|
|
if (faceEnrolled && numFingerprintsEnrolled > 1) {
|
|
return mContext.getString(
|
|
R.string.security_settings_biometric_preference_summary_both_fp_multiple);
|
|
} else if (faceEnrolled && numFingerprintsEnrolled == 1) {
|
|
return mContext.getString(
|
|
R.string.security_settings_biometric_preference_summary_both_fp_single);
|
|
} else if (faceEnrolled) {
|
|
return mContext.getString(R.string.security_settings_face_preference_summary);
|
|
} else if (numFingerprintsEnrolled > 0) {
|
|
return mContext.getResources().getQuantityString(
|
|
R.plurals.security_settings_fingerprint_preference_summary,
|
|
numFingerprintsEnrolled, numFingerprintsEnrolled);
|
|
} else {
|
|
return mContext.getString(
|
|
R.string.security_settings_biometric_preference_summary_none_enrolled);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected String getSettingsClassName() {
|
|
return Settings.CombinedBiometricSettingsActivity.class.getName();
|
|
}
|
|
|
|
@Override
|
|
protected String getEnrollClassName() {
|
|
return Settings.CombinedBiometricSettingsActivity.class.getName();
|
|
}
|
|
}
|