在HarmonyOS NEXT开发中Swiper指示器显示错误?

在HarmonyOS NEXT开发中Swiper指示器显示错误?属性上已经设置不显示指示器了,UI上还是展示了出来。

Swiper(this.controller){ 
  ForEach(this.titles, (subData: string, currentIndex: number) => { 
    MarketStockListItem({item: subData, currentIndex: currentIndex}) 
  }) 
} 
.onChange((index: number) => { 
  this.currentIndex = index; 
}) 
.width('100%') 
.displayCount(1, true) 
.index($$this.currentIndex) 
.autoPlay(false) 
.indicator(false) 
.cachedCount(6) 
.loop(false)

本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。

阅读 627
avatarAI BotBETA
### 回答
在 HarmonyOS NEXT 开发中,如果 Swiper 组件的指示器已经通过 `.indicator(false)` 属性设置为不显示,但 UI 上仍然展示出来,这可能是由于以下几个原因导致的:

1. **属性设置无效**:确保 `.indicator(false)` 是正确设置在 Swiper 组件上的。从你提供的代码来看,这个设置是正确的。但有时候,可能是由于其他代码或样式覆盖了这一设置。

2. **版本或框架问题**:检查你使用的 HarmonyOS NEXT SDK 版本是否有已知的 bug 或限制,导致 `.indicator(false)` 属性不起作用。

3. **缓存问题**:有时候,开发环境中的缓存可能会导致 UI 更新不及时。尝试清除缓存或重启开发环境,看看问题是否仍然存在。

4. **样式冲突**:检查是否有其他样式或自定义组件影响了 Swiper 组件的显示。特别是检查是否有全局样式或父组件样式对 Swiper 的指示器部分进行了覆盖。

5. **代码错误**:虽然你的代码片段看起来没有语法错误,但确保整个组件和页面的其他部分没有逻辑错误或遗漏,这可能会间接影响 Swiper 组件的显示。

如果以上方法都不能解决问题,建议查看官方文档或社区论坛,看看是否有其他开发者遇到并解决了类似的问题。同时,也可以考虑向 HarmonyOS 官方提交 bug 报告。
1 个回答

你可以使用indicator设置颜色透明,让它不显示。详细内容请参见:https://developer.huawei.com/consumer/cn/doc/harmonyos-refere...

.indicator(Indicator.dot() 
  .itemWidth(15) 
  .itemHeight(15) 
  .selectedItemWidth(15) 
  .selectedItemHeight(15) 
  .color('#00000000') 
  .selectedColor('#00000000'))
设置透明是替换方案,单独设置indicator也是可以生效的,参考demo:
// 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 SwiperExample { 
  private swiperController: SwiperController = new SwiperController() 
  private data: MyDataSource = new MyDataSource([]) 
 
  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(true) 
      .interval(4000) 
      .loop(true) 
      .duration(1000) 
      .itemSpace(0) 
      // .indicator( // 设置圆点导航点样式 
      //   new DotIndicator() 
      //     .itemWidth(15) 
      //     .itemHeight(15) 
      //     .selectedItemWidth(15) 
      //     .selectedItemHeight(15) 
      //     .color(Color.Gray) 
      //     .selectedColor(Color.Blue)) 
      .indicator(false) 
      // .loop(false) 
      // .indicator(Indicator.dot() 
      //   .itemWidth(15) 
      //   .itemHeight(15) 
      //   .selectedItemWidth(15) 
      //   .selectedItemHeight(15) 
      //   .color('#00000000') 
      //   .selectedColor('#00000000')) 
      .displayArrow({ // 设置导航点箭头样式 
        showBackground: true, 
        isSidebarMiddle: true, 
        backgroundSize: 24, 
        backgroundColor: Color.White, 
        arrowSize: 18, 
        arrowColor: Color.Blue 
      }, false) 
      .curve(Curve.Linear) 
      .onChange((index: number) => { 
        console.info(index.toString()) 
      }) 
      .onGestureSwipe((index: number, extraInfo: SwiperAnimationEvent) => { 
        console.info("index: " + index) 
        console.info("current offset: " + extraInfo.currentOffset) 
      }) 
      .onAnimationStart((index: number, targetIndex: number, extraInfo: SwiperAnimationEvent) => { 
        console.info("index: " + index) 
        console.info("targetIndex: " + targetIndex) 
        console.info("current offset: " + extraInfo.currentOffset) 
        console.info("target offset: " + extraInfo.targetOffset) 
        console.info("velocity: " + extraInfo.velocity) 
      }) 
      .onAnimationEnd((index: number, extraInfo: SwiperAnimationEvent) => { 
        console.info("index: " + index) 
        console.info("current offset: " + extraInfo.currentOffset) 
      }) 
 
      Row({ space: 12 }) { 
        Button('showNext') 
          .onClick(() => { 
            this.swiperController.showNext() 
          }) 
        Button('showPrevious') 
          .onClick(() => { 
            this.swiperController.showPrevious() 
          }) 
      }.margin(5) 
    }.width('100%') 
    .margin({ top: 5 }) 
  } 
}

本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题