We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4b783f commit c0c8765Copy full SHA for c0c8765
core/java/android/inputmethodservice/InputMethodService.java
@@ -687,6 +687,10 @@ void initViews() {
687
mRootView.getViewTreeObserver().removeOnComputeInternalInsetsListener(
688
mInsetsComputer);
689
if (mWindowAdded) {
690
+ // Disable exit animation for the current IME window
691
+ // to avoid the race condition between the exit and enter animations
692
+ // when the current IME is being switched to another one.
693
+ mWindow.getWindow().setWindowAnimations(0);
694
mWindow.dismiss();
695
}
696
0 commit comments