am e6e45510: am 11a578f4: Disable suggestion bar before invoke Voice input
Merge commit 'e6e45510674b31d0c82fa5f8a7943668d7e8503a' * commit 'e6e45510674b31d0c82fa5f8a7943668d7e8503a': Disable suggestion bar before invoke Voice inputmain
commit
b050829609
|
@ -1566,7 +1566,9 @@ public class LatinIME extends InputMethodService
|
|||
if (mKeyboardSwitcher.getInputView() != null) {
|
||||
setInputView(mKeyboardSwitcher.getInputView());
|
||||
}
|
||||
setCandidatesViewShown(true);
|
||||
updateInputViewShown();
|
||||
postUpdateSuggestions();
|
||||
}});
|
||||
}
|
||||
|
||||
|
@ -1574,6 +1576,7 @@ public class LatinIME extends InputMethodService
|
|||
final boolean configChanged = mConfigurationChanging;
|
||||
mHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
setCandidatesViewShown(false);
|
||||
mRecognizing = true;
|
||||
View v = mVoiceInput.getView();
|
||||
ViewParent p = v.getParent();
|
||||
|
|
Loading…
Reference in New Issue