am 81f794df: Merge "Fix 3296883: Hide PIN characters in ChooseLockPassword" into honeycomb

* commit '81f794dfa11fa21527ea33335dc76ad488aa9bfa':
  Fix 3296883: Hide PIN characters in ChooseLockPassword
This commit is contained in:
Jim Miller
2011-01-17 20:01:12 -08:00
committed by Android Git Automerger

View File

@@ -197,7 +197,7 @@ public class ChooseLockPassword extends PreferenceActivity {
int currentType = mPasswordEntry.getInputType();
mPasswordEntry.setInputType(mIsAlphaMode ? currentType
: (currentType | InputType.TYPE_CLASS_NUMBER));
: (InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_PASSWORD));
Intent intent = getActivity().getIntent();
final boolean confirmCredentials = intent.getBooleanExtra("confirm_credentials", true);