HarmonyOS RichEditor内容高出能否滚动?

HarmonyOS RichEditor内容高出能否滚动?


HarmonyOS
2024-09-29 12:43:44
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

参考代码:

@Entry  
@Component  
struct RichEditor_heightover {  
  controller: RichEditorController = new RichEditorController()  
  // 自定义键盘组件  
  @Builder CustomKeyboardBuilder() {  
    Column() {  
      Grid() {  
        ForEach([1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#'], (item: number | string) => {  
          GridItem() {  
            Button(item + "")  
              .width(110).onClick(() => {  
              this.controller.addTextSpan(item + '', {  
                offset: this.controller.getCaretOffset(),  
                style:  
                {  
                  fontColor: Color.Orange,  
                  fontSize: 30  
                }  
              })  
              this.controller.setCaretOffset(this.controller.getCaretOffset() + item.toString().length)  
            })  
          }  
        })  
      }.maxCount(3).columnsGap(10).rowsGap(10).padding(5)  
    }.backgroundColor(Color.Gray)  
  }  
  build() {  
    Column() {  
      RichEditor({ controller: this.controller })  
        .height(20)  
        .borderWidth(1)  
        .borderColor(Color.Red)  
        .width("100%")  
    }  
  }  
}
分享
微博
QQ
微信
回复
2024-09-29 17:37:01
相关问题
为何RichText组件中内容可以滚动
1893浏览 • 1回复 待解决
HarmonyOS RichEditor如何使用?
177浏览 • 1回复 待解决
HarmonyOS RichEditor 使用问题
370浏览 • 1回复 待解决
HarmonyOS RichEditor 获焦/失焦问题
232浏览 • 1回复 待解决
RichEditor如何拿到BuilderSpan?
1651浏览 • 1回复 待解决
RichEditor添加、删除、重载图片
909浏览 • 1回复 待解决
基于RichEditor的评论编辑
572浏览 • 1回复 待解决
HarmonyOS 列表视频滚动播放
214浏览 • 1回复 待解决
提问
该提问已有0人参与 ,帮助了0人