diff options
author | 2012-02-29 22:21:57 +0900 | |
---|---|---|
committer | 2012-03-02 20:52:25 +0900 | |
commit | 5ef4fccbb90491e1f6c2e87b47ebf9f3659949fb (patch) | |
tree | fe7ae0e9f7b8a3b6a5b9a9c1566aa51c9440a65c /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | |
parent | 961703841e89a274122c87541d1151fd91672ddc (diff) | |
download | latinime-5ef4fccbb90491e1f6c2e87b47ebf9f3659949fb.tar.gz latinime-5ef4fccbb90491e1f6c2e87b47ebf9f3659949fb.tar.xz latinime-5ef4fccbb90491e1f6c2e87b47ebf9f3659949fb.zip |
Support dividers in MoreKeysKeyboard
Bug: 6080806
Change-Id: Iacd78c6aab6abf948717d34da7489a79c41316d2
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java index 0bd6abe09..cb1b49c67 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java +++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java @@ -34,7 +34,7 @@ import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo; public class MoreSuggestions extends Keyboard { public static final int SUGGESTION_CODE_BASE = 1024; - private MoreSuggestions(Builder.MoreSuggestionsParam params) { + MoreSuggestions(Builder.MoreSuggestionsParam params) { super(params); } @@ -63,7 +63,7 @@ public class MoreSuggestions extends Keyboard { paint.setAntiAlias(true); final Resources res = view.getContext().getResources(); mDivider = res.getDrawable(R.drawable.more_suggestions_divider); - // TODO: Drawable itself should has an alpha value. + // TODO: Drawable itself should have an alpha value. mDivider.setAlpha(128); mDividerWidth = mDivider.getIntrinsicWidth(); final int padding = (int) res.getDimension( |