2175312 : IME suggestions stay on screen after switching orientation in search dialog
Only show the candidate strip if the input view is showing. Otherwise ignore any completions from the AutoCompleteTextView
This commit is contained in:
parent
21daa53245
commit
8102ae7941
1 changed files with 2 additions and 1 deletions
|
@ -694,7 +694,8 @@ public class LatinIME extends InputMethodService
|
|||
public void setCandidatesViewShown(boolean shown) {
|
||||
// TODO: Remove this if we support candidates with hard keyboard
|
||||
if (onEvaluateInputViewShown()) {
|
||||
super.setCandidatesViewShown(shown);
|
||||
// Show the candidates view only if input view is showing
|
||||
super.setCandidatesViewShown(shown && mInputView != null && mInputView.isShown());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue