Merge pull request #5262 from keymanapp/fix/android/cherry-pick/5211-rotation-not-updating-keyboard

fix(android): rotation is not updating keyboard 🍒
This commit is contained in:
Marc Durdin 2021-06-11 09:30:52 +10:00 committed by GitHub
commit 2efcd27ffc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -165,6 +165,7 @@ public class SystemKeyboard extends InputMethodService implements OnKeyboardEven
@Override
public void onStartInputView(EditorInfo attribute, boolean restarting) {
super.onStartInputView(attribute, restarting);
setInputView(onCreateInputView());
}
@Override

View file

@ -146,6 +146,7 @@ public class SystemKeyboard extends InputMethodService implements OnKeyboardEven
@Override
public void onStartInputView(EditorInfo attribute, boolean restarting) {
super.onStartInputView(attribute, restarting);
setInputView(onCreateInputView());
}
@Override

View file

@ -151,6 +151,7 @@ public class SystemKeyboard extends InputMethodService implements KeyboardEventH
@Override
public void onStartInputView(EditorInfo attribute, boolean restarting) {
super.onStartInputView(attribute, restarting);
setInputView(onCreateInputView());
}
@Override