Remove "Show password" in Security page

"Show password" will be moved in Settings > Privacy.
Since each of things should only exist in one place,
we remove it in Security page.

Test: visual
Bug: 116628158
Change-Id: I9f9083b88d7a20faa9bd28ded2cf8c3b9a5622fd
This commit is contained in:
tmfang
2018-11-07 12:06:34 +08:00
parent 80d03d1d20
commit 7b235e3cfe
2 changed files with 0 additions and 15 deletions

View File

@@ -89,20 +89,6 @@
</PreferenceCategory>
<!-- security_settings_misc.xml -->
<PreferenceCategory
android:order="30"
android:key="security_settings_misc_category"
android:title="@string/security_passwords_title">
<SwitchPreference
android:key="show_password"
android:title="@string/show_password"
android:summary="@string/show_password_summary"
settings:controller="com.android.settings.security.ShowPasswordPreferenceController" />
</PreferenceCategory>
<PreferenceCategory
android:order="40"
android:key="security_settings_device_admin_category">

View File

@@ -108,7 +108,6 @@ public class SecuritySettings extends DashboardFragment {
controllers.add(new ManageTrustAgentsPreferenceController(context));
controllers.add(new ScreenPinningPreferenceController(context));
controllers.add(new SimLockPreferenceController(context));
controllers.add(new ShowPasswordPreferenceController(context));
controllers.add(new EncryptionStatusPreferenceController(context,
PREF_KEY_ENCRYPTION_SECURITY_PAGE));
controllers.add(new TrustAgentListPreferenceController(context, host, lifecycle));