Text实现scroll效果怎么弄?

需要使用eTs实现text段落在固定height中可以有scroll效果。

Scroll(this.scroller) {
  Column() {
    Text("This text box is scrollable thanks to being situated inside a nested scroll view. That makes it scrollable regardless of the scrolling of the content of the entire screen, which can be scrolled independently.\nThe point here is to demonstrate how the over-scroll effect can work in the presence of nested scroll-views, provided it is applied over the parent (root) view, regardless of having inner nested scroll-views as children.\nIn this demo, the root view is merely a ScrollView, and therefore applying the effect over it is straightforward (i.e. using the OverScrollHelper).")
      .width("100%").height("100%").textOverflow({ overflow: TextOverflow.None })
      .fontSize(22).fontWeight(600).fontColor("#727171")
  }.padding(14).width("100%").height(200)
}.scrollBar(BarState.Off)

上述代码子组件的height明显大于父组件,但是没有滚动效果。

鸿蒙
滚动
Text
2022-03-18 13:00:43
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Sampso
1

问题已解决,在外面再嵌套一层布局,设置height就行了

Column() {
  Scroll(this.scroller) {
    Flex() {
      Text("This text box is scrollable thanks to being situated inside a nested scroll view. That makes it scrollable regardless of the scrolling of the content of the entire screen, which can be scrolled independently.\nThe point here is to demonstrate how the over-scroll effect can work in the presence of nested scroll-views, provided it is applied over the parent (root) view, regardless of having inner nested scroll-views as children.\nIn this demo, the root view is merely a ScrollView, and therefore applying the effect over it is straightforward (i.e. using the OverScrollHelper).")
        .fontSize(22).fontWeight(600).fontColor("#727171")
    }.padding(14).width("100%")
  }.scrollBar(BarState.Off)
}.width("100%").height(200)
分享
微博
QQ
微信
回复
2022-03-18 14:17:31
相关问题
想把APK文件转成HAP怎么弄
3874浏览 • 2回复 待解决
Mysql 同时修改多个库的数据怎么弄
2830浏览 • 1回复 待解决
ability被异常杀后数据保留怎么弄
4858浏览 • 1回复 待解决
tabs结合scroll实现吸顶效果
1209浏览 • 1回复 待解决
如何实现scroll、list单边回弹效果
374浏览 • 1回复 待解决
如何去掉Scroll回弹效果
672浏览 • 1回复 待解决
Scroll容器中子组件吸顶效果
270浏览 • 1回复 待解决
应用怎么实现半模态效果
2177浏览 • 1回复 待解决
栅格布局怎么实现滚动效果
354浏览 • 0回复 待解决
鸿蒙中怎么实现动画翻转效果
10289浏览 • 2回复 待解决
HarmonyOS怎么从手机一个文件出来?
346浏览 • 1回复 待解决
Text怎么设置文本渐变?
173浏览 • 0回复 待解决