HarmonyOS webview键盘关闭之后,web窗口高度没有自动恢复

操作步骤:

1、输入框输入密码,

2、直接点击登录按钮

js控制台显示高度一直是484 document.body.clientHeight

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

需要监听软键盘弹出和收起,当软键盘弹出子窗口高度设置为屏幕高度-软键盘高度;软键盘收起,弹出子窗口高度为屏幕高度

import webview from '@ohos.web.webview';
import window from '@ohos.window';

@Entry
@Component
export struct SubWindowPage {
  @State webViewVisibility: Visibility = Visibility.Visible;
  private pageWidth = 320;
  private pageHeight = 500;
  private controller: webview.WebviewController = new webview.WebviewController();
  @State flexAlign: FlexAlign = FlexAlign.Center
  @State screenHeight: number | string = '100%'

  aboutToAppear() {
    window.getLastWindow(getContext(this)).then(currentWindow => {
      // 监视软键盘的弹出和收起
      currentWindow.on('avoidAreaChange', async data => {
        let property = currentWindow.getWindowProperties();
        let avoidArea = currentWindow.getWindowAvoidArea(window.AvoidAreaType.TYPE_KEYBOARD);
        this.screenHeight = px2vp(property.windowRect.height - avoidArea.bottomRect.height);
      });
    })
  }
  build() {
    Stack() {
      Column() {
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
          .fileAccess(false)
          .zoomAccess(false)
          .domStorageAccess(true)
          .onlineImageAccess(true)
          .horizontalScrollBarAccess(false)
          .verticalScrollBarAccess(false)
          .cacheMode(CacheMode.Online)
          .width(this.pageWidth)
          .height(this.pageHeight)
          .border({ radius: 6 })
          .visibility(this.webViewVisibility)
          .backgroundColor(Color.Pink)
      }
      .justifyContent(this.flexAlign)
      .alignItems(HorizontalAlign.Center)
      .width('100%')
      .height('100%')
    }
    .width('100%')
    .height(this.screenHeight)
    .backgroundColor('#999955')
    .alignContent(Alignment.Center)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 如何先关闭键盘关闭弹窗
462浏览 • 1回复 待解决
HarmonyOS 如何全局关闭键盘
43浏览 • 1回复 待解决
HarmonyOS 关闭窗口前如何弹出提示?
13浏览 • 1回复 待解决
ets开发关闭窗口组件问题
3317浏览 • 1回复 待解决
如何通过代码关闭窗口
436浏览 • 1回复 待解决
电脑端窗口关闭实现
670浏览 • 1回复 待解决
HarmonyOS 短链接能否自动关闭
49浏览 • 1回复 待解决
如何用WebView创建新窗口
833浏览 • 1回复 待解决