HarmonyOS 负反馈功能实现问题

搜索结果页采用瀑布流布局,现在需要实现负反馈功能。目前使用overlay不满足需求,因为overlay的前提是需要付组件有固定的height,搜索结果页的每个FlowItem都没有固定的height,所以无法使用。同时也试用了Stack组件也无法实现,是否有其他方案?

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

需要在长按时获取当前FlowItem的高度,用这个高度作为浮层的高度,参考示例如下:

import { WaterFlowDataSource } from '../Modal/WaterFlowDataSource2';
import { componentUtils } from '@kit.ArkUI';

@Entry
@Component
struct WaterFlowDemo {
  minSize: number = 80
  maxSize: number = 180
  fontSize: number = 24
  colors: number[] = [0xFFC0CB, 0xDA70D6, 0x6B8E23, 0x6A5ACD, 0x00FFFF, 0x00FF7F]
  heights: string[] = ['30%', '35%', '40%', '45%', '50%', '55%']
  scroller: Scroller = new Scroller()
  dataSource: WaterFlowDataSource = new WaterFlowDataSource()
  @State overlayShow: boolean = false; // 浮层
  @State overlayHeight: number = 0;
  @State curIndex: number = -1;
  @State sections: WaterFlowSections = new WaterFlowSections()
  @State isShow: boolean = true;
  lastSection: SectionOptions = {
    itemsCount: 100, crossCount: 2
  }

  aboutToAppear() {
    let sectionOptions: SectionOptions[] = [];
    sectionOptions.push(this.lastSection);
    this.sections.splice(0, 0, sectionOptions);
  }

  @Builder
  OverlayNode(overlayHeight: number) {
    Column() {
      Button('关闭浮层')
        .type(ButtonType.Capsule)
        .fontSize(20)
        .margin({ bottom: 5 })
        .onClick(() => {
          this.overlayShow = false;
        })

      Text("This is overlayNode").fontSize(20).fontColor(Color.White)
    }
    .width('100%')
    .alignItems(HorizontalAlign.Center)
    .backgroundColor('#000000')
    .opacity(0.8)
    .height(overlayHeight)
  }

  build() {
    Column({ space: 2 }) {
      WaterFlow({ scroller: this.scroller }) {
        LazyForEach(this.dataSource, (item: number, index: number) => {
          FlowItem() {
            Stack({ alignContent: Alignment.Center }) {
              Text(index + "")
                .width("100%")
                .height(this.heights[index % 5])
            }
          }
          .id(item.toString())
          .width('100%')
          .overlay(this.curIndex === index && this.overlayShow ? this.OverlayNode(this.overlayHeight) : undefined,
            { align: Alignment.Center })
          // 单指长按文本触发该手势事件
          .gesture(
            LongPressGesture()// 由于repeat设置为true,长按动作存在时会连续触发,触发间隔为duration(默认值500ms)
              .onAction((event: GestureEvent) => {
                if (event) {
                  this.curIndex = index;
                  const componentInfo: componentUtils.ComponentInfo = componentUtils.getRectangleById(item.toString());
                  this.overlayHeight = px2vp(componentInfo.size.height); // 组件大小单位是px,需要转换下
                  this.overlayShow = true;
                  console.log('zkq FlowItem ' + item.toString() + ' ' + JSON.stringify(componentInfo.size));
                }
              })
          )
          .backgroundColor(this.colors[item % 5])
        }, (item: string) => item)
      }
      .columnsTemplate('1fr 1fr') // 瀑布流使用sections参数时该属性无效
      .columnsGap(10)
      .rowsGap(20)
      .backgroundColor(0xFAEEE0)
      .width("100%")
      .layoutWeight(1)
      .height("100%")
    }
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS RNOH问题反馈 - SVG组件
23浏览 • 1回复 待解决
HarmonyOS现在支持震动反馈吗?
465浏览 • 1回复 待解决
鸿蒙截图功能实现问题
10388浏览 • 1回复 待解决
HarmonyOS Pixelmap相关反馈
54浏览 • 1回复 待解决
HarmonyOS 推送功能问题
54浏览 • 1回复 待解决
HarmonyOS 录音功能问题
23浏览 • 1回复 待解决
HarmonyOS 如何实现DeepLink功能
34浏览 • 1回复 待解决
HarmonyOS 如何实现直播功能
44浏览 • 1回复 待解决
HarmonyOS 曝光功能如何实现
29浏览 • 1回复 待解决
HarmonyOS 分享功能如何实现
224浏览 • 1回复 待解决
HarmonyOS 虚线功能实现
60浏览 • 1回复 待解决
HarmonyOS 实现RSA加密功能
622浏览 • 1回复 待解决
HarmonyOS 换肤功能怎么实现
562浏览 • 1回复 待解决
HarmonyOS 实现倒计时功能
56浏览 • 1回复 待解决
HarmonyOS 如何实现长按点击功能
28浏览 • 1回复 待解决
HarmonyOS 如何实现图片编辑功能
70浏览 • 1回复 待解决
HarmonyOS 如何实现搜索历史功能
73浏览 • 1回复 待解决
HarmonyOS 指南针功能实现
23浏览 • 1回复 待解决
HarmonyOS如何实现头像选择功能
648浏览 • 1回复 待解决