Change-Id: Ie4b8b657fc6cc5a819d4ea3a0ca4536e6fdf6825
main
Tadashi G. Takaoka 2011-06-27 20:30:40 +09:00
parent d8850ae1ab
commit 281e180c33
1 changed files with 2 additions and 1 deletions

View File

@ -514,7 +514,8 @@ 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, view);
if (mCandidateView != null)
mCandidateView.setListener(this, view);
mCandidateStripHeight = (int)mResources.getDimension(R.dimen.candidate_strip_height);
}