diff options
author | 2011-06-14 16:28:57 +0900 | |
---|---|---|
committer | 2011-06-14 20:40:56 +0900 | |
commit | 86e815a142c8aa13213151e381a8a24ef23073d3 (patch) | |
tree | 10d9b1f4c1293f58f1d1a5ef14ab08be71232867 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 90cb2e6296726960b12e622ffa2b30c5ff92a079 (diff) | |
download | latinime-86e815a142c8aa13213151e381a8a24ef23073d3.tar.gz latinime-86e815a142c8aa13213151e381a8a24ef23073d3.tar.xz latinime-86e815a142c8aa13213151e381a8a24ef23073d3.zip |
Implement expandable candidates pane
This change removes horizontal scroll from candidates strip. Instead
of that this change introduces "fixed 3 items candidates strip" and
"expandable candidates pane".
Bug: 4175031
Change-Id: Ia367d9074436fdea76d3b653d81798ce2749170e
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 940f6b835..75bca9937 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -502,7 +502,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar super.setInputView(view); mCandidateViewContainer = view.findViewById(R.id.candidates_container); mCandidateView = (CandidateView) view.findViewById(R.id.candidates); - mCandidateView.setListener(this); + mCandidateView.setListener(this, view); mCandidateStripHeight = (int)mResources.getDimension(R.dimen.candidate_strip_height); } |