diff options
author | 2014-01-30 09:17:11 +0000 | |
---|---|---|
committer | 2014-01-30 09:17:11 +0000 | |
commit | 776d46a771089482c68be56e81219bbd7bb559e4 (patch) | |
tree | 25616233985f9159b4419bd49c5c45f676c59fcb /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 7ceee45376d104a79723aa2aaeb30057e6f7e513 (diff) | |
parent | 9b1a66843ddde552ea626a7b24c2c71ba23aa63a (diff) | |
download | latinime-776d46a771089482c68be56e81219bbd7bb559e4.tar.gz latinime-776d46a771089482c68be56e81219bbd7bb559e4.tar.xz latinime-776d46a771089482c68be56e81219bbd7bb559e4.zip |
Merge "Show "Touch again to save" in system locale"
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); |