HarmonyOS webview里的输入框被键盘覆盖

webview 里页面下方的输入框被键盘覆盖,页面没有顶起来

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

可以通过获取键盘避让区域的高度,添加到web组件底部距离上,手动抬起web组件,demo如下:

import webview from '@ohos.web.webview'
import { KeyboardAvoidMode } from '@kit.ArkUI';
import window from '@ohos.window';
@Entry
@Component
struct B {
  @State scrollHeight: number = 40;
  controller: webview.WebviewController = new webview.WebviewController();
  aboutToAppear() {
    window.getLastWindow(getContext(this)).then(currentWindow => {
      currentWindow.on('avoidAreaChange', async data => {
        //判断规避区是否是软键盘区域。
        if (data.type !== window.AvoidAreaType.TYPE_KEYBOARD) {
          return;
        }
        //规避区的高度。
        this.scrollHeight = px2vp(data.area.bottomRect.height)+40;
      })
    })
  };


  build() {
    Column() {
      Text('客服').height(55)
      Web({
        src: '',
        controller: this.controller
      })
        .domStorageAccess(true)
        .onlineImageAccess(true)
        .imageAccess(true)
        .zoomAccess(false)
        .javaScriptAccess(true)
          //手动改变bottom值
        .margin({ bottom: this.scrollHeight })
        .animation({curve: Curve.EaseOut, duration: 300})
    }.width('100%')

  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS webview输入框遮挡
39浏览 • 1回复 待解决
HarmonyOS web中输入框键盘遮住
39浏览 • 1回复 待解决
HarmonyOS 键盘遮挡输入框
17浏览 • 1回复 待解决
HarmonyOS 如何控制输入框弹出键盘
28浏览 • 1回复 待解决
HarmonyOS 输入框与软键盘问题
37浏览 • 1回复 待解决
HarmonyOS 自定义键盘不能顶起输入框
392浏览 • 1回复 待解决
HarmonyOS 自定义键盘输入框焦点问题
120浏览 • 1回复 待解决