🎨 Improve keyboard pop on HarmonyOS (Pura X)

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2026-02-22 16:40:29 +08:00
parent 929367aa3e
commit 736b808e49
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -4,7 +4,7 @@ export let keyboardLockUntil = 0;
export const callMobileAppShowKeyboard = () => {
// 某些机型(比如鸿蒙 Pura X在弹起键盘后会立即触发 activeBlur 导致键盘被关闭,所以在主动唤起键盘时锁定一段时间,禁止 activeBlur 关闭键盘
// 每次主动唤起键盘时,锁定接下来的 300ms 不允许通过 activeBlur 关闭
// 每次主动唤起键盘时,锁定接下来的 200ms 不允许通过 activeBlur 关闭
keyboardLockUntil = Date.now() + 200;
if (window.JSAndroid && window.JSAndroid.showKeyboard) {