diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 0bfcc07043b40ff1340223147a43cd0c8378ee67..fb9c47db232150222c43a08bfdb5666d4f200a1c 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -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();