diff options
author | 2014-01-30 16:52:29 +0900 | |
---|---|---|
committer | 2014-01-30 18:03:23 +0900 | |
commit | 9b1a66843ddde552ea626a7b24c2c71ba23aa63a (patch) | |
tree | a439a2725e61a51f7a5ae165fb34322249c8880a /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | bf2f0892a03799a4c0bd59af339970945a143d87 (diff) | |
download | latinime-9b1a66843ddde552ea626a7b24c2c71ba23aa63a.tar.gz latinime-9b1a66843ddde552ea626a7b24c2c71ba23aa63a.tar.xz latinime-9b1a66843ddde552ea626a7b24c2c71ba23aa63a.zip |
Show "Touch again to save" in system locale
Bug: 12811156
Change-Id: I928daf17297ec5c526720850d6203cb9af0496ac
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java index 5469ced7a..22804fce1 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -186,8 +186,8 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick return mStripVisibilityGroup.isShowingAddToDictionaryStrip(); } - public void showAddToDictionaryHint(final String word, final CharSequence hintText) { - mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth(), hintText); + public void showAddToDictionaryHint(final String word) { + mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth()); // {@link TextView#setTag()} is used to hold the word to be added to dictionary. The word // will be extracted at {@link #onClick(View)}. mAddToDictionaryStrip.setTag(word); |