Merge "Fix a bug with long user dict entries"

main
Jean Chalard 2013-06-14 08:59:50 +00:00 committed by Android (Google) Code Review
commit 78b881bf5a
1 changed files with 3 additions and 1 deletions

View File

@ -76,7 +76,9 @@ public class UserDictionaryAddWordContents {
final String word = args.getString(EXTRA_WORD);
if (null != word) {
mWordEditText.setText(word);
mWordEditText.setSelection(word.length());
// Use getText in case the edit text modified the text we set. This happens when
// it's too long to be edited.
mWordEditText.setSelection(mWordEditText.getText().length());
}
final String shortcut;
if (UserDictionarySettings.IS_SHORTCUT_API_SUPPORTED) {