Remove sliceable attribute from biometric preference controllers.

This removes the top-level UI switch on some of the boolean preference settings.

Bug: 193438173
Test: atest com.android.settings.biometrics
Change-Id: If1cd2cb9ae456021fcdf0efc5002db4a083b9689
This commit is contained in:
Joe Bolinger
2021-08-04 15:00:32 -07:00
parent a131a4e35d
commit f78cec292c
10 changed files with 247 additions and 10 deletions

View File

@@ -86,4 +86,9 @@ public class BiometricSettingsAppPreferenceController extends TogglePreferenceCo
return AVAILABLE_UNSEARCHABLE;
}
}
@Override
public final boolean isSliceable() {
return false;
}
}