HarmonyOS 列表List删除某一项的时候,如何添加动画效果

现在存在长列表中有删除按钮,删除的时候调用datasource.delete方法,删除时并没有动画。有什么方法可以添加删除时的过度动画吗?

HarmonyOS
2024-12-25 14:05:37
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
zbw_apple

参考示例如下:

class BasicDataSource implements IDataSource {
  private listeners: DataChangeListener[] = [];
  private originDataArray: string[] = [];

  public totalCount(): number {
    return 0;
  }

  public getData(index: number): string {
    return this.originDataArray[index];
  }

  registerDataChangeListener(listener: DataChangeListener): void {
    if (this.listeners.indexOf(listener) < 0) {
      console.info('add listener');
      this.listeners.push(listener);
    }
  }

  unregisterDataChangeListener(listener: DataChangeListener): void {
    const pos = this.listeners.indexOf(listener);
    if (pos >= 0) {
      console.info('remove listener');
      this.listeners.splice(pos, 1);
    }
  }

  notifyDataReload(): void {
    this.listeners.forEach(listener => {
      listener.onDataReloaded();
    })
  }

  notifyDataAdd(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataAdd(index);
    })
  }

  notifyDataChange(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataChange(index);
    })
  }

  notifyDataDelete(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataDelete(index);
    })
  }

  notifyDataMove(from: number, to: number): void {
    this.listeners.forEach(listener => {
      listener.onDataMove(from, to);
    })
  }
}

class MyDataSource extends BasicDataSource {
  dataArray: string[] = [];

  public totalCount(): number {
    return this.dataArray.length;
  }

  public getData(index: number): string {
    return this.dataArray[index];
  }

  public addData(index: number, data: string): void {
    this.dataArray.splice(index, 0, data);
    this.notifyDataAdd(index);
  }

  // 在数据尾部增加一个元素
  public AddLastItem(): void {
    this.dataArray.splice(this.dataArray.length, 0, this.dataArray.length.toString())
    this.notifyDataAdd(this.dataArray.length - 1)
  }

  public pushData(data: string): void {
    this.dataArray.push(data);
    this.notifyDataAdd(this.dataArray.length - 1);
  }

  public deleteData(index: number): void {
    this.dataArray.splice(index, 1);
    this.notifyDataDelete(index);
  }
}

@Entry
@Component
struct ListEdit {
  private data: MyDataSource = new MyDataSource();
  @State
  transitionTime: TransitionEffect = (TransitionEffect.IDENTITY)

  setDeleteAnimation() {
    this.transitionTime = (TransitionEffect.opacity(0)
      .animation({
        duration: 300,
      })).combine(TransitionEffect.asymmetric(TransitionEffect.move(TransitionEdge.END),
      TransitionEffect.move(TransitionEdge.START)))
  }

  setAddAnimation() {
    this.transitionTime = (TransitionEffect.opacity(0)
      .animation({
        duration: 300,
        delay: 500
      })).combine(TransitionEffect.asymmetric(TransitionEffect.move(TransitionEdge.END),
      TransitionEffect.move(TransitionEdge.START)))
  }

  aboutToAppear() {
    for (let i = 0; i <= 20; i++) {
      this.data.pushData(`${i}`)
    }
  }

  @State index2: number = 100

  build() {
    List({ space: 3 }) {
      LazyForEach(this.data, (item: string, index: number) => {
        ListItem() {
          Row() {
            Text(item)
              .fontSize(50)
              .width('70%')
              .height(80)
              .fontSize(20)
              .textAlign(TextAlign.Center)
              .borderRadius(10)
              .border({ width: 1 })
            Button('del')
              .onClick(() => {
                this.setDeleteAnimation()
                animateTo({
                  duration: 800,
                  delay: 300,
                  curve: Curve.Linear,
                  onFinish: () => {
                    this.transitionTime = (TransitionEffect.IDENTITY) //动画结束时设置禁止转场
                  }
                }, () => {
                  this.data.deleteData(this.data.dataArray.indexOf(item))
                })
              })
            Button('add')
              .onClick(() => {
                this.setAddAnimation()
                // 点击添加数据
                this.index2 = this.index2 + 1
                animateTo({
                  duration: 500, curve: Curve.Smooth, onFinish: () => {
                    this.transitionTime = (TransitionEffect.IDENTITY)
                  }
                }, () => {
                  this.data.addData(0, "new Data" + this.index2)
                })
              })
          }
          .margin({ left: 10, right: 10 })
        }
        .transition(
          this.transitionTime)
        .swipeAction({
          end: {
            onAction: () => {
              this.setDeleteAnimation()
              animateTo({ duration: 1000 }, () => {
                this.data.deleteData(this.data.dataArray.indexOf(item))
              })
            },
            actionAreaDistance: 56,
            onEnterActionArea: () => {
            },
            onExitActionArea: () => {
            }
          }
        })
        .onAppear(() => {
          console.info('item' + item)
          // 即将触底时提前增加数据
          if (item + 1 == this.data.totalCount().toString()) {
            for (let i = 0; i < 10; i++) {
              this.data.AddLastItem()
            }
          }
        })
      }, (item: string) => item)
    }.cachedCount(5)
  }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
分享
微博
QQ
微信
回复
2024-12-25 16:43:28
相关问题
HarmonyOS 怎么删除cookie里某一项
758浏览 • 1回复 待解决
HarmonyOS 列表动画效果
893浏览 • 1回复 待解决
HarmonyOS List动画效果
822浏览 • 1回复 待解决
HarmonyOS 删除相册中某一照片
1020浏览 • 1回复 待解决
如何实现list折叠动画效果
1381浏览 • 1回复 待解决
HarmonyOS grid拖拽效果如何添加动画
975浏览 • 1回复 待解决
HarmonyOS Text添加动画效果与预期不符
828浏览 • 1回复 待解决
如何为图片添加个模糊效果
1160浏览 • 2回复 待解决