Ensures that the combined biometric settings pages shown in Settings are not indexed for search on devices without multiple biometric sensors. Test: Manually tested on devices with and without multiple biometrics Fixes: 193704179 Change-Id: I007b5d2a0191cb61454e5ae0f411d4c594536fc5
67 lines
2.1 KiB
Java
67 lines
2.1 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.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.search.BaseSearchIndexProvider;
|
|
|
|
/**
|
|
* Settings screen for multiple biometrics used in work profile.
|
|
*/
|
|
public class CombinedBiometricProfileSettings extends BiometricsSettingsBase {
|
|
private static final String TAG = "BiometricProfileSetting";
|
|
private static final String KEY_FACE_SETTINGS = "biometric_face_settings_profile";
|
|
private static final String KEY_FINGERPRINT_SETTINGS = "biometric_fingerprint_settings_profile";
|
|
|
|
@Override
|
|
public void onAttach(Context context) {
|
|
super.onAttach(context);
|
|
use(BiometricSettingsAppPreferenceController.class).setUserId(mUserId);
|
|
}
|
|
|
|
@Override
|
|
protected int getPreferenceScreenResId() {
|
|
return R.xml.security_settings_combined_biometric_profile;
|
|
}
|
|
|
|
@Override
|
|
public String getFacePreferenceKey() {
|
|
return KEY_FACE_SETTINGS;
|
|
}
|
|
|
|
@Override
|
|
public String getFingerprintPreferenceKey() {
|
|
return KEY_FINGERPRINT_SETTINGS;
|
|
}
|
|
|
|
@Override
|
|
protected String getLogTag() {
|
|
return TAG;
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.COMBINED_BIOMETRIC_PROFILE;
|
|
}
|
|
|
|
public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
|
new CombinedBiometricSearchIndexProvider(
|
|
R.xml.security_settings_combined_biometric_profile);
|
|
}
|