Temporarily hiding enabling non-working functionality UI option for Froyo early droidfooders.

Tracking issue in bug 2475355 Review Settings app options for non-working functionality.
This commit is contained in:
Oscar Montemayor
2010-02-26 13:03:56 -08:00
parent 09d74ee21e
commit c5a73328f1

View File

@@ -235,9 +235,8 @@ public class SecuritySettings extends PreferenceActivity {
// File System Encryption
PreferenceCategory encryptedfsCat = new PreferenceCategory(this);
encryptedfsCat.setTitle(R.string.encrypted_fs_category);
root.addPreference(encryptedfsCat);
//root.addPreference(encryptedfsCat);
mCredentialStorage.createPreferences(encryptedfsCat, CredentialStorage.TYPE_ENCRYPTEDFS);
return root;
}
@@ -622,7 +621,7 @@ public class SecuritySettings extends PreferenceActivity {
mEncryptedFSEnabled.setTitle(R.string.encrypted_fs_enable);
mEncryptedFSEnabled.setSummary(R.string.encrypted_fs_enable_summary);
mEncryptedFSEnabled.setOnPreferenceChangeListener(this);
category.addPreference(mEncryptedFSEnabled);
// category.addPreference(mEncryptedFSEnabled);
break;
}
}