Clear CandidateView in onStartInputView

Before starting input on new TextView, we must clear the CandidateView
because it may hold the suggestion of previous TextView or even worse
the suggestions pane has been expanded and keyboard has been hidden.

Bug: 4995414
Change-Id: If848320c1a510e7018d36ed8ac61291be2fc6ce5
main
Tadashi G. Takaoka 2011-07-06 17:57:24 -07:00
parent 273e5d60f4
commit 88110d1799
2 changed files with 3 additions and 1 deletions

View File

@ -701,9 +701,9 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
mShowingAddToDictionary = false;
mShowingAutoCorrectionInverted = false;
mTouchToSave.setVisibility(GONE);
mCandidatesStrip.setVisibility(VISIBLE);
mCandidatesStrip.removeAllViews();
mCandidatesPane.removeAllViews();
closeCandidatesPane();
}
private void hidePreview() {

View File

@ -580,6 +580,8 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
switcher.updateShiftState();
}
if (mCandidateView != null)
mCandidateView.clear();
setSuggestionStripShownInternal(isCandidateStripVisible(), /* needsInputViewShown */ false);
// Delay updating suggestions because keyboard input view may not be shown at this point.
mHandler.postUpdateSuggestions();