HarmonyOS 鸿蒙Next Swiper如何监听滑动到边缘后超过距离多少,打算超过一定距离做对应的操作

发布于 1周前 作者 wuwangju 来自 鸿蒙OS

HarmonyOS 鸿蒙Next Swiper如何监听滑动到边缘后超过距离多少,打算超过一定距离做对应的操作

Swiper 如何监听滑动到边缘后超过距离多少,打算超过一定距离做对应的操作

2 回复

您看一下onContentDidScroll12能满足您的需求。

onContentDidScroll12+。监听Swiper页面滑动事件。

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-container-swiper-V5#oncontentdidscroll12

您参考一下这个链接的demo,能否满足您的需求。

https://developer.huawei.com/consumer/cn/doc/harmonyos-faqs-V5/faqs-arkui-251-V5

您可以参考以下demo:

可以在this.getUIContext().getPromptAction().showToast({ message: ‘> 50’ })替换成您自己刷新的逻辑

// xxx.ets
class MyDataSource implements IDataSource {
  private list: number[] = []

  constructor(list: number[]) {
    this.list = list
  }

  totalCount(): number {
    return this.list.length
  }

  getData(index: number): number {
    return this.list[index]
  }

  registerDataChangeListener(listener: DataChangeListener): void {
  }

  unregisterDataChangeListener() {
  }
}

@Entry
@Component
struct Page240830111844078 {
  private swiperController: SwiperController = new SwiperController()
  private data: MyDataSource = new MyDataSource([])
  private isRefresh: boolean = false

  aboutToAppear(): void {
    let list: number[] = []
    for (let i = 1; i <= 10; i++) {
      list.push(i);
    }
    this.data = new MyDataSource(list)
  }

  build() {
    Column({ space: 5 }) {
      Swiper(this.swiperController) {
        LazyForEach(this.data, (item: string) => {
          Text(item.toString())
            .width('90%')
            .height(160)
            .backgroundColor(0xAFEEEE)
            .textAlign(TextAlign.Center)
            .fontSize(30)
        }, (item: string) => item)
      }
      .cachedCount(2)
      .index(1)
      .autoPlay(false)
      .interval(4000)
      .loop(false)
      .indicatorInteractive(true)
      .duration(1000)
      .itemSpace(0)
      .indicator( // 设置圆点导航点样式
        new DotIndicator()
          .itemWidth(15)
          .itemHeight(15)
          .selectedItemWidth(15)
          .selectedItemHeight(15)
          .color(Color.Gray)
          .selectedColor(Color.Blue))
      .displayArrow({
        // 设置导航点箭头样式
        showBackground: true,
        isSidebarMiddle: true,
        backgroundSize: 24,
        backgroundColor: Color.White,
        arrowSize: 18,
        arrowColor: Color.Blue
      }, false)
      .curve(Curve.Linear)
      .onGestureSwipe((index: number, extraInfo: SwiperAnimationEvent) => {
        if (index === 0) {
          if (extraInfo.currentOffset > 50) {
            if (!this.isRefresh) {
              this.isRefresh = true
              this.getUIContext().getPromptAction().showToast({ message: '> 50' })
            }
          } else {
            this.isRefresh = false
          }
        }
        if (index === this.data.totalCount() - 1) {
          if (extraInfo.currentOffset < -50) {
            this.getUIContext().getPromptAction().showToast({ message: '< -50' })
          }
        }
      })
    }.width('100%')
    .margin({ top: 5 })
  }
}

更多关于HarmonyOS 鸿蒙Next Swiper如何监听滑动到边缘后超过距离多少,打算超过一定距离做对应的操作的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


在HarmonyOS鸿蒙系统中,Next Swiper组件可以通过监听滑动事件来实现对滑动到边缘后超过特定距离的检测。你可以使用SwipeListener接口来监听滑动事件,并在滑动事件中计算滑动的距离。

具体步骤如下:

  1. 实现SwipeListener接口: 创建一个类实现SwipeListener接口,并重写onSwipe方法。

  2. 计算滑动距离: 在onSwipe方法中,通过事件参数获取滑动开始和结束的位置,计算出滑动的距离。

  3. 判断滑动方向及边缘检测: 根据滑动的方向和距离判断是否已经滑动到边缘并超过特定距离。

  4. 执行对应操作: 如果滑动到边缘并超过设定距离,则执行相应的操作。

示例代码片段(伪代码):

class MySwipeListener implements SwipeListener {
    @Override
    public void onSwipe(SwipeEvent event) {
        int swipeDistance = calculateDistance(event.getStartX(), event.getStartY(), event.getEndX(), event.getEndY());
        if (isEdgeSwipe(event) && swipeDistance > THRESHOLD_DISTANCE) {
            // 执行对应操作
        }
    }

    private int calculateDistance(int x1, int y1, int x2, int y2) {
        // 计算距离
    }

    private boolean isEdgeSwipe(SwipeEvent event) {
        // 判断是否滑动到边缘
    }
}

如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html

回到顶部