am 11a578f4: Disable suggestion bar before invoke Voice input
Merge commit '11a578f4f130ebae66fb1bd9953874f421c3c09c' into gingerbread-plus-aosp * commit '11a578f4f130ebae66fb1bd9953874f421c3c09c': Disable suggestion bar before invoke Voice inputmain
commit
e6e4551067
|
@ -1567,7 +1567,9 @@ public class LatinIME extends InputMethodService
|
|||
if (mKeyboardSwitcher.getInputView() != null) {
|
||||
setInputView(mKeyboardSwitcher.getInputView());
|
||||
}
|
||||
setCandidatesViewShown(true);
|
||||
updateInputViewShown();
|
||||
postUpdateSuggestions();
|
||||
}});
|
||||
}
|
||||
|
||||
|
@ -1575,6 +1577,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