diff options
| author | Jules Aguillon | 2026-02-25 00:12:43 +0100 |
|---|---|---|
| committer | GitHub | 2026-02-25 00:12:43 +0100 |
| commit | 958900ca2feedee35a5b32c831f505b88628de22 (patch) | |
| tree | 68df9c552ae7c5b629a07c381d60643d83639a63 /srcs/juloo.keyboard2/Keyboard2.java | |
| parent | ae4a9d4514f2680e81e9b9dc0e333d5f9975be22 (diff) | |
| download | unexpected-keyboard-958900ca2feedee35a5b32c831f505b88628de22.tar.gz unexpected-keyboard-958900ca2feedee35a5b32c831f505b88628de22.zip | |
Update target SDK version to 36 (#1190)
* Fix keyboard not showing on Android 16
* Update target SDK version to 36
Diffstat (limited to 'srcs/juloo.keyboard2/Keyboard2.java')
| -rw-r--r-- | srcs/juloo.keyboard2/Keyboard2.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/Keyboard2.java b/srcs/juloo.keyboard2/Keyboard2.java index 2a7695c..af536dd 100644 --- a/srcs/juloo.keyboard2/Keyboard2.java +++ b/srcs/juloo.keyboard2/Keyboard2.java @@ -351,6 +351,15 @@ public class Keyboard2 extends InputMethodService return false; } + @Override + public boolean onEvaluateInputViewShown() + { + super.onEvaluateInputViewShown(); + // Return true regardless of the super call result to fix the keyboard not + // being visible on Android 16 + return true; + } + /** Called from [onClick] attributes. */ public void launch_dictionaries_activity(View v) { |
