HarmonyOS RichEditor预输入组件高度不变化

RichEditor在拼音预输入时,不会适配改变高度,那部分会显示在外部,文字彻底输入后才会改变高度,这个能不能在预输入时就扩展适配下高度

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  private richEditorController: RichEditorController = new RichEditorController();
  private options: RichEditorOptions = { controller: this.richEditorController };

  build() {
    Row() {
      Stack({
        alignContent: Alignment.Center
      }) {
        RichEditor(this.options)
          .border({ width: 1, color: Color.Green })
          .padding(0)
          .width("100%")
      }
      .backgroundColor("#14161823")
      .border({ width: 1, color: Color.Red })
      .layoutWeight(1)
      .constraintSize({
        minHeight: 40
      })
      .borderRadius(20)
      .padding({
        left: 8,
        right: 8,
        top: 8,
        bottom: 8
      })
      .margin({
        left: 12,
        right: 12,
        top: 6,
        bottom: 6
      })
      .height("auto")
      .width("100%")

      Text("发送")
        .borderRadius(25)
        .backgroundColor("#57FE2C55")
        .fontColor(Color.White)
        .fontSize(13)
        .textAlign(TextAlign.Center)
        .height(30)
        .width(50)
        .margin({
          right: 17
        })
    }
    .constraintSize({
      minHeight: 56
    })
    .width("100%")
    .backgroundColor(Color.White)
  }
}
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

当前问题是RichEditor已经可以预输入改变高度了,是外层的Stack没有变化,使用高度监听内部RichEditor的高度变化,然后同步给外面的Stack即可

分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS RichEditor如何控制输入状态
60浏览 • 1回复 待解决
HarmonyOS 控件高度随滚动变化
15浏览 • 1回复 待解决
HarmonyOS 页面高度发生变化
187浏览 • 1回复 待解决
如何监听输入输入内容的变化
406浏览 • 1回复 待解决
TabContent组件是否支持加载
1734浏览 • 1回复 待解决
HarmonyOS加载Image组件的图片
536浏览 • 1回复 待解决
HarmonyOS Web组件渲染加载不正常
52浏览 • 1回复 待解决
HarmonyOS 密码输入组件
28浏览 • 1回复 待解决
如何取消订阅输入法文本内容的变化
449浏览 • 1回复 待解决
RichEditor组件如何设置初始字体样式
1039浏览 • 1回复 待解决