Fix missing setService call for CandaiteView

This bug has been introduced by I95f379b9.

Bug: 4486388
Change-Id: I23fd3abe05946d4709b4593efa4713cd19723479
main
Tadashi G. Takaoka 2011-05-25 17:55:41 +09:00
parent 0aa0133795
commit 3e17686c68
1 changed files with 1 additions and 0 deletions

View File

@ -484,6 +484,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
final View inputView = mKeyboardSwitcher.onCreateInputView();
mCandidateViewContainer = inputView.findViewById(R.id.candidates_container);
mCandidateView = (CandidateView) inputView.findViewById(R.id.candidates);
mCandidateView.setService(this);
mCandidateStripHeight = (int)mResources.getDimension(R.dimen.candidate_strip_height);
return inputView;
}