HarmonyOS Refresh组件,在刷新组件时如何设置高度?

在Scroll组件外层包了一个Refresh组件,下拉刷新时,Refresh组件高度不可设置,导致在刷新过程中,自定义刷新组件中的LoadingProgress及Text会被遮挡或者显示不全。

HarmonyOS
2024-10-15 12:41:31
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

可参照以下demo:

@Entry  
@Component  
struct RefreshNestScroll {  
  private arr: number[] = [0, 1, 2, 3]  
  @State isRefreshing: boolean = false  
  scroller: Scroller = new Scroller()  
  build() {  
    Column() {  
      Refresh({ refreshing: $$this.isRefreshing }) {  
        Scroll() {  
          Column() {  
            Text('我是scroll顶端').height(100)  
            List() {  
              ForEach(this.arr, (item: number) => {  
                ListItem() {  
                  Text('' + item)  
                }.height(100).width('100%')  
              })  
            }  
            .divider({ strokeWidth: 0.5, color: Color.Red })  
            .width('100%')  
            .height('100%')  
            .backgroundColor('#FFDDFF')  
            .nestedScroll({  
              scrollForward: NestedScrollMode.PARENT_FIRST,  
              scrollBackward: NestedScrollMode.SELF_FIRST  
            })  
            Text('我是scroll底端').height(100)  
          }  
        }.width('100%').height('100%').backgroundColor(Color.Gray)  
        .nestedScroll({  
          scrollForward: NestedScrollMode.PARENT_FIRST,  
          scrollBackward: NestedScrollMode.SELF_FIRST  
        })  
      }  
      .onRefreshing(() => {  
        setTimeout(() => {  
          this.isRefreshing = !this.isRefreshing  
        }, 2000)  
      })  
    }.width('100%').height(400).backgroundColor(0xDCDCDC).justifyContent(FlexAlign.Center)  
  }  
}
分享
微博
QQ
微信
回复
2024-10-15 18:03:47
相关问题
Refresh组件不支持设置nestedScroll属性
1818浏览 • 1回复 待解决
如何设置组件的最大最小宽度高度
3079浏览 • 1回复 待解决
怎样为TextArea组件设置最小高度
294浏览 • 1回复 待解决
HarmonyOS Refresh组件嵌套滑动冲突问题
768浏览 • 1回复 待解决
组件最大和最小宽度和高度如何设置
2365浏览 • 1回复 待解决
HarmonyOS使用Refresh下拉刷新问题
715浏览 • 1回复 待解决