HarmonyOS 使用CustomDialogController的输入框在键盘弹出后有一个间隙

项目中使用CustomDialogController写了一个评论输入框,设置了alignment: DialogAlignment.Bottom,在弹出键盘后输入框和键盘中间有一定的间距,试过使用offset调整也没有效果。

HarmonyOS
2024-09-30 10:43:52
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

可以参考这个demo,修改最后一行offset(x,y)中y的参数控制弹窗上下移动:

@Entry  
@Component  
struct CustomDialogPage {  
  @State message: string = 'CustomDialogPage';  
  customDialogController: CustomDialogController = new CustomDialogController({  
    builder: CustomEditDialogWidget({  
      tipString: '姓名',  
      inputType: InputType.Normal,  
      textInputConString: (info: string) => {  
      }  
    }),  
    alignment: DialogAlignment.Bottom,  
    maskColor: Color.Red, //1、蒙层颜色  
    customStyle: true //2.1、弹窗位置  
  });  
  build() {  
    Row() {  
      Column() {  
        Button(this.message).onClick(() =>{  
          this.customDialogController.open();  
        })  
      }  
      .width('100%')  
    }  
    .height('100%')  
  }  
}  
@CustomDialog  
@Component  
export struct CustomEditDialogWidget {  
  controller?: CustomDialogController;  
  @State textInputString: string = ""  
  tipString: string = ""  
  textInputConString = (info: string) => {  
  }  
  inputType: InputType = InputType.Normal  
  build() {  
    Column() {  
      Text(`请输入${this.tipString}`).margin({ top: 20 })  
      TextInput({ placeholder: `请输入${this.tipString}` })  
        .width("90%")  
        .backgroundColor(Color.White)  
        .borderWidth(1)  
        .borderColor("#666")  
        .borderRadius(10)  
        .margin({ top: 20 })  
        .defaultFocus(true)  
        .onChange((value: string) => {  
          this.textInputString = value  
        })  
        .type(this.inputType)  
      Row() {  
        Text("取消")  
          .fontColor("#333")  
          .onClick(() => {  
            this.controller?.close()  
          }).padding({ left: 35, right: 35, top: 15, bottom: 15 })  
        Text("|").opacity(0.5).height("100%")  
        Text("确定").fontColor("#000").onClick(() => {  
          if (this.textInputString !== "") {  
            this.textInputConString(this.textInputString)  
          }  
          this.controller?.close()  
        }).padding({ left: 35, right: 35, top: 15, bottom: 15 })  
      }  
      .width("100%")  
      .height(50)  
      .justifyContent(FlexAlign.SpaceAround)  
      .margin({ top: 10 })  
    }.width("90%")  
    .borderRadius(15)  
    .backgroundColor(Color.White)  
    .borderWidth(5)  
    .offset({ x: 0, y: 20}) //2.2、弹窗位置,y等于16的时候刚刚好  
  }  
}

间隙不是虚拟按键的高度,该间隙是dialog的规格问题,软键盘拉起后,弹框和软键盘距离16vp导致的。

分享
微博
QQ
微信
回复
2024-09-30 18:21:06
相关问题
js如何清空一个input 输入框内容
7616浏览 • 1回复 待解决
HarmonyOS 自定义键盘不能顶起输入框
242浏览 • 1回复 待解决
HarmonyOS 输入框无法对齐
284浏览 • 1回复 待解决