HarmonyOS 如何在手动停止列表滚动时不触发click事件?

在List快速滚动的时候,用手指触碰屏幕让列表停止下来,但是会触发列表卡片上的click事件/tap事件。

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

可以通过scrollState控制enabled实现手动停止列表滚动时不触发click事件。

参考以下demo:

@Entry
@Component
struct ListExample {
  private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
  @State BScroll: boolean = true
  @State fontColor: string = '#182431'
  @State selectedFontColor: string = '#007DFF'
  @State currentIndex: number = 0
  private controller: TabsController = new TabsController()

  @Builder tabBuilder(index: number, name: string) {
    Column() {
      Text(name)
        .fontColor(this.currentIndex === index ? this.selectedFontColor : this.fontColor)
        .fontSize(16)
        .fontWeight(this.currentIndex === index ? 500 : 400)
        .lineHeight(22)
        .margin({ top: 17, bottom: 7 })
      Divider()
        .strokeWidth(2)
        .color('#007DFF')
        .opacity(this.currentIndex === index ? 1 : 0)
    }.width('100%')
  }



  build() {
    Column() {

      Tabs({ barPosition: BarPosition.Start, index: this.currentIndex, controller: this.controller }) {
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#00CB87')
        }.tabBar(this.tabBuilder(0, 'green'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#007DFF')
        }.tabBar(this.tabBuilder(1, 'blue'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#FFBF00')
        }.tabBar(this.tabBuilder(2, 'yellow'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#E67C92')
        }.tabBar(this.tabBuilder(3, 'pink'))
      }
      .vertical(false)
      .enabled(this.BScroll)
      .barMode(BarMode.Fixed)
      .barWidth(360)
      .barHeight(56)
      .animationDuration(400)
      .onChange((index: number) => {
        this.currentIndex = index
      })
      .width(360)
      .height(296)
      .margin({ top: 52 })
      .backgroundColor('#F1F3F5')

      List({ space: 20, initialIndex: 0 }) {
        ForEach(this.arr, (item: number) => {
          ListItem() {
            Button('Button' + item)
              .width('100%')
              .height(100)
              .fontSize(16)
              .enabled(this.BScroll)
              .borderRadius(10)
              .backgroundColor(0xbbbb)
          }
        }, (item: string) => item)
      }
      .listDirection(Axis.Vertical)
      .scrollBar(BarState.Off)
      .friction(0.6)
      .divider({ strokeWidth: 2, color: 0xFFFFFF, startMargin: 20, endMargin: 20 })
      .onScroll((scrollState: ScrollState) =>{
        console.info('enabled:'+(scrollState == 0).toString())
        if (scrollState == 0) {
          this.BScroll = true;
        } else {
          this.BScroll = false;
        }
      })
      .width('90%')

    }
    .width('100%')
    .height('100%')
    .backgroundColor(0xDCDCDC)
    .padding({ top: 5 })
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
返回页面触发aboutToAppear
3627浏览 • 1回复 待解决
HarmonyOS 滚动列表问题
18浏览 • 1回复 待解决
HarmonyOS 滚动列表问题?
157浏览 • 0回复 待解决
position:absolute下click事件无效吗?
6425浏览 • 1回复 待解决
HarmonyOS 列表视频滚动播放
398浏览 • 1回复 待解决
长按事件如何重复触发
2100浏览 • 1回复 待解决
HarmonyOS 生命周期触发
47浏览 • 1回复 待解决