HarmonyOS ArkWeb是否支持禁用webview内容监听键盘变化 1

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

监听软键盘弹出和收起,当软键盘弹出子窗口高度设置为屏幕高度。软键盘收起弹出子窗口高度为屏幕高度,参考示例如下:

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天前
相关问题
ArkWeb组件是否支持深拷贝
596浏览 • 1回复 待解决
HarmonyOS 禁用键盘
32浏览 • 1回复 待解决
HarmonyOS ArkWeb组件是否支持深拷贝?
504浏览 • 2回复 待解决
HarmonyOS ArkWeb是否支持直接打开PDF?
236浏览 • 1回复 待解决
HarmonyOS ArkWeb是否支持自定义UserAgent
415浏览 • 1回复 待解决
HarmonyOS 如何监听某个变量是否变化
52浏览 • 1回复 待解决
webview是否支持CodeCache
856浏览 • 1回复 待解决
HarmonyOS webview是否支持CodeCache
35浏览 • 1回复 待解决
UIAbility中是否可以监听页面变化
1507浏览 • 1回复 待解决
如何监听输入法输入内容变化
396浏览 • 1回复 待解决
HarmonyOS webview是否支持跨域
77浏览 • 1回复 待解决
webview是否支持预览pdf
1291浏览 • 1回复 待解决
HarmonyOS数据库数据变化是否可以监听
496浏览 • 1回复 待解决
HarmonyOS webview是否支持indexDB存储
445浏览 • 1回复 待解决
Webview是否支持定位功能?
708浏览 • 1回复 待解决
webview是否支持同层渲染
1885浏览 • 1回复 待解决
HarmonyOS webView是否支持使用three.js
57浏览 • 1回复 待解决