HarmonyOS web中的输入框被键盘遮住

我的一个网页中的输入框被点击后,被键盘顶部banner遮住

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

示例如下:

import window from '@ohos.window';
@Entry
@Component
struct Index {
  @State screenHeight: number = 0;
  aboutToAppear() {
    window.getLastWindow(getContext(this)).then(currentWindow =>{
      let property = currentWindow.getWindowProperties();
      let avoidArea = currentWindow.getWindowAvoidArea(window.AvoidAreaType.TYPE_KEYBOARD);
      // 初始化显示区域高度
      this.screenHeight = px2vp(property.windowRect.height - avoidArea.bottomRect.height);
      // 监视软键盘的弹出和收起
      currentWindow.on('avoidAreaChange', async data => {
        if (data.type !== window.AvoidAreaType.TYPE_KEYBOARD) {
          return;
        }
        this.screenHeight = px2vp(property.windowRect.height - data.area.bottomRect.height);
      })
    })
  }
  build() {
    Row() {
      Column() {
        Text('请输入短信验证码')
          .fontSize(30)
          .margin({
            bottom:'50'
          })
        TextInput()
          .width('70%')
          .height('150px')
          .margin({
            bottom: '30'
          })
        Button('确定')
          .width('70%')
          .margin('20px')
      }
      .width('100%')
    }
    .width('100%').height(this.screenHeight)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 键盘遮挡输入框
17浏览 • 1回复 待解决
HarmonyOS webview输入框遮挡
37浏览 • 1回复 待解决
HarmonyOS 如何控制输入框弹出键盘
25浏览 • 1回复 待解决
HarmonyOS 自定义键盘不能顶起输入框
390浏览 • 1回复 待解决
HarmonyOS 输入框与软键盘问题
37浏览 • 1回复 待解决