HarmonyOS 如何实现list组件item滑动到中间高亮显示

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

可参考以下示例:

@Entry
@Component
struct ListExample {
  private arr: number[] = []
  private scrollerForList: Scroller = new Scroller()

  @State color: number = Color.White
  @State centerIndex : number = 0
  aboutToAppear() {
    for (let i = 0; i < 10; i++) {
      this.arr.push(i)
    }
  }

  build() {
    Column() {
      Row() {
        List({ space: 20, initialIndex: 0, scroller: this.scrollerForList }) {
          ForEach(this.arr, (item: number) => {
            ListItem() {
              Text('' + item)
                .width('100%').height(100).fontSize(16)
                .textAlign(TextAlign.Center).backgroundColor(item===this.centerIndex?Color.Pink:Color.White)
            }
            .borderRadius(10)
            .width('40%')
            .height('80%')

          }, (item: number) => JSON.stringify(item))
        }
        .chainAnimation(true)
        .edgeEffect(EdgeEffect.Spring)
        .listDirection(Axis.Horizontal)
        .height('100%')
        .width('100%')
        .scrollSnapAlign(ScrollSnapAlign.CENTER)
        .borderRadius(10)
        .backgroundColor(0xDCDCDC)
        .onScrollIndex((firstIndex: number, lastIndex: number, centerIndex: number) => {
          console.info('first' + firstIndex)
          console.info('last' + lastIndex)
          console.info('center' + centerIndex)
          this.centerIndex = centerIndex
        })
      }
      .width('100%')
      .height('100%')
      .backgroundColor(0xDCDCDC)
      .padding({ top: 10 })
    }
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS 组件List如何禁止滑动
16浏览 • 1回复 待解决
list组件无法滚动到底部
1306浏览 • 1回复 待解决
HarmonyOS 监听List组件滑动
48浏览 • 1回复 待解决
HarmonyOS如何去掉List组件滑动线
921浏览 • 1回复 待解决
HarmonyOS list组件如何设置匀速滑动
58浏览 • 1回复 待解决
HarmonyOS listitem如何保存状态
319浏览 • 2回复 待解决