aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2012-05-29 19:07:22 +0900
committerSatoshi Kataoka <satok@google.com>2012-05-29 20:39:39 +0900
commitc88f61215c5b9ca6e0cc3f776e3b7da19eec9cae (patch)
treefb9ed8983cdbcbd8f25659e33f6b6088fa4c52fd /java/src/com/android/inputmethod/latin/LatinIME.java
parent51705efc96c1c555cf9e0f557ea8cdc1c1c97781 (diff)
downloadlatinime-c88f61215c5b9ca6e0cc3f776e3b7da19eec9cae.tar.gz
latinime-c88f61215c5b9ca6e0cc3f776e3b7da19eec9cae.tar.xz
latinime-c88f61215c5b9ca6e0cc3f776e3b7da19eec9cae.zip
Set level 1 as the initial value of the valid words
Bug: 4192129 Change-Id: I867e78ce79c78977d08e8b66881a25b6fe5bf41f
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 52088812d..38549436b 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -2093,8 +2093,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
} else {
secondWord = suggestion.toString();
}
+ // We demote unrecognized word and words with 0-frequency (assuming they would be
+ // profanity etc.) by specifying them as "invalid".
+ final int maxFreq = AutoCorrection.getMaxFrequency(
+ mSuggest.getUnigramDictionaries(), suggestion);
mUserHistoryDictionary.addToUserHistory(null == prevWord ? null : prevWord.toString(),
- secondWord);
+ secondWord, maxFreq > 0);
return prevWord;
}
return null;