HarmonyOS list如何动态滚动到指定位置

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

可以用scroller.scrollTo 方法

参考demo:

@Entry
@Component
struct ListExample {
  private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
  @State index: number = 2
  @State indexInGroup: number = 6
  private scroller: Scroller = new Scroller();

  build() {
    Column() {
      Button('跳转到指定位置').onClick(() => {
        this.scroller.scrollTo({ xOffset: 700, yOffset: 700 })
      })
      List({ space: 20, initialIndex: 0, scroller: this.scroller }) {
        ForEach(this.arr, (item: number) => {
          ListItem() {
            Text('' + item)
              .width('100%')
              .height(100)
              .fontSize(16)
              .textAlign(TextAlign.Center)
              .borderRadius(10)
              .backgroundColor(0xFFFFFF)
          }
        }, (item: string) => item)
      }
      .listDirection(Axis.Vertical) // 排列方向
      .scrollBar(BarState.Off)
      .friction(0.6)
      .divider({
        strokeWidth: 2,
        color: 0xFFFFFF,
        startMargin: 20,
        endMargin: 20
      }) // 每行之间的分界线
      .edgeEffect(EdgeEffect.Spring) // 边缘效果设置为Spring

      .width('90%')
    }
    .width('100%')
    .height('100%')
    .backgroundColor(0xDCDCDC)
    .padding({ top: 5 })
  }
}
分享
微博
QQ
微信
回复
3天前
相关问题
HarmonyOS List列表滚动到指定位置
31浏览 • 1回复 待解决
list组件无法滚动到底部
1310浏览 • 1回复 待解决
HarmonyOS swiper如何滚动到任意页面?
518浏览 • 1回复 待解决