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 AutoCompleteTextViewmain
parent
21daa53245
commit
8102ae7941
|
@ -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 New Issue