# 键盘

# qq.onKeyboardHeightChange(callback function)

基础库 1.10.0 开始支持,低版本需做兼容处理。

监听键盘高度变化

# 参数

# callback function

# 回调参数

# object res

属性 类型 说明
height number 键盘高度

# 示例代码

qq.onKeyboardHeightChange(res => {
  console.log(res.height);
});
1
2
3