diff options
author | 2014-05-20 01:40:26 +0000 | |
---|---|---|
committer | 2014-05-20 01:40:26 +0000 | |
commit | 56c13302ab5d9f2ec562fc9afb2bdf132d0b8277 (patch) | |
tree | 25fc7e64b45d37797ebcea0be069fb9c4cb84046 /java | |
parent | ce63defaf86fc736465ca4844517bbb050bfc3d7 (diff) | |
parent | 9fb27977141bdccc3bbd0cacc71ba6ba8d7a71dc (diff) | |
download | latinime-56c13302ab5d9f2ec562fc9afb2bdf132d0b8277.tar.gz latinime-56c13302ab5d9f2ec562fc9afb2bdf132d0b8277.tar.xz latinime-56c13302ab5d9f2ec562fc9afb2bdf132d0b8277.zip |
am 9fb27977: Fix number password field handling
* commit '9fb27977141bdccc3bbd0cacc71ba6ba8d7a71dc':
Fix number password field handling
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/InputAttributes.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/InputAttributes.java b/java/src/com/android/inputmethod/latin/InputAttributes.java index 726b3d141..df4948322 100644 --- a/java/src/com/android/inputmethod/latin/InputAttributes.java +++ b/java/src/com/android/inputmethod/latin/InputAttributes.java @@ -46,6 +46,8 @@ public final class InputAttributes { final int inputType = null != editorInfo ? editorInfo.inputType : 0; final int inputClass = inputType & InputType.TYPE_MASK_CLASS; mInputType = inputType; + mIsPasswordField = InputTypeUtils.isPasswordInputType(inputType) + || InputTypeUtils.isVisiblePasswordInputType(inputType); if (inputClass != InputType.TYPE_CLASS_TEXT) { // If we are not looking at a TYPE_CLASS_TEXT field, the following strange // cases may arise, so we do a couple sanity checks for them. If it's a @@ -61,7 +63,6 @@ public final class InputAttributes { Log.w(TAG, String.format("Unexpected input class: inputType=0x%08x" + " imeOptions=0x%08x", inputType, editorInfo.imeOptions)); } - mIsPasswordField = false; mIsSettingsSuggestionStripOn = false; mInputTypeNoAutoCorrect = false; mApplicationSpecifiedCompletionOn = false; @@ -79,8 +80,6 @@ public final class InputAttributes { final boolean flagAutoComplete = 0 != (inputType & InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE); - mIsPasswordField = InputTypeUtils.isPasswordInputType(inputType) - || InputTypeUtils.isVisiblePasswordInputType(inputType); // TODO: Have a helper method in InputTypeUtils // Make sure that passwords are not displayed in {@link SuggestionStripView}. final boolean noSuggestionStrip = mIsPasswordField |