Merge "Do not triggerVoiceIME at changing subtype if IME is not shown." into honeycomb

main
satok 2011-01-14 00:22:03 -08:00 committed by Android (Google) Code Review
commit 1c835437a5
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,6 @@
package com.android.inputmethod.latin;
import com.android.inputmethod.keyboard.Keyboard;
import com.android.inputmethod.keyboard.KeyboardSwitcher;
import com.android.inputmethod.voice.SettingsUtil;
import com.android.inputmethod.voice.VoiceIMEConnector;
@ -433,6 +432,7 @@ public class SubtypeSwitcher {
}
private void triggerVoiceIME() {
if (!mService.isInputViewShown()) return;
VoiceIMEConnector.getInstance().startListening(false,
KeyboardSwitcher.getInstance().getInputView().getWindowToken(), false);
}