HarmonyOS 元服务项目如何将listitem的swipeAction滑动效果恢复至未滑动

如何将listitem的swipeAction滑动效果恢复至未滑动。

需要在点击一个button的时候取消listitem的滑动效果,也就是关闭swipeAction已经滑出的效果。

请问如何将listitem的swipeAction滑动效果恢复至未滑动?

HarmonyOS
2024-09-25 12:08:23
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

由于ListScroller是API 11新增的接口,所以暂不支持元服务开发。

可以自定义动画效果,实现功能

参考demo:

// ListDemo.ets  
@Entry  
@Component  
struct ListDemo {  
  @State arr: number[] = [0, 1, 2, 3, 4]  
  
  @State offsetX: number = 0;  
  @State currentIndex: number = -1;  
  @State curOffsetX: number = 0;  
  
  build() {  
    Column() {  
      List({ space: 20, initialIndex: 0 }) {  
        ForEach(this.arr, (item: number, index) => {  
          ListItem() {  
            AddressItem({  
              item: item + '',  
              onDeleteItem: () => {  
                this.offsetX = 0  
              }  
            })  
          }  
          .translate({x: this.currentIndex == index ? this.offsetX : 0})  
          .animation({  
            duration: 400,  
            curve: Curve.Smooth,  
          })  
          .gesture(  
            PanGesture({ direction: PanDirection.Left | PanDirection.Right })  
              .onActionUpdate((event) => {  
                this.currentIndex = index  
                let x = event.offsetX;  
                // 左滑  
                if (x < 0) {  
                  this.offsetX = (x + this.curOffsetX) < -60 ? -80 : x;  
                }  
                // 右滑  
                if (x > 0) {  
                  this.offsetX = 0;  
                }  
              })  
              .onActionEnd((event) => {  
                let x = event.offsetX;  
                // 左滑  
                if (x < 0) {  
                  this.offsetX = -60;  
                  this.curOffsetX = -60  
                }  
                // 右滑  
                if (x > 0) {  
                  this.offsetX = 0;  
                  this.curOffsetX = 0;  
                }  
              })  
          )  
        })  
      }  
      .listDirection(Axis.Vertical)  
      .margin({ top: 20 })  
    }  
    .backgroundColor(0xDCDCDC)  
    .width('100%')  
    .height('100%')  
  }  
}  
// AddressItem.ets  
import { AlertDialog } from '@ohos.arkui.advanced.Dialog'  
  
@Component  
struct AddressItem {  
  item: string = ''  
  onDeleteItem: () => void = () => {}  
  
  dialogControllerConfirm: CustomDialogController = new CustomDialogController({  
    builder: AlertDialog({  
      content: '确定删除?',  
      primaryButton: {  
        value: '取消',  
        action: () => {  
          this.onDeleteItem()  
        },  
      },  
      secondaryButton: {  
        value: '确认',  
        fontColor: Color.Green,  
        action: () => {  
        }  
      },  
    }),  
    autoCancel: false,  
    customStyle: true,  
    alignment: DialogAlignment.Center  
  })  
  
  build() {  
    Row() {  
      Column() {  
        Text(this.item)  
        Text(this.item)  
      }.width('100%').backgroundColor(Color.White)  
  
      Text('删除')  
        .width(42)  
        .height(42)  
        .fontColor(Color.White)  
        .borderRadius(6)  
        .backgroundColor('#007dff')  
        .textAlign(TextAlign.Center)  
        .margin({ left: 12 })  
        .onClick(() => {  
          this.dialogControllerConfirm.open()  
        })  
    }  
    .width('100%')  
    .constraintSize({ maxWidth: '100%' })  
    .margin({left: 20, right: 10})  
  }  
}
分享
微博
QQ
微信
回复
2024-09-25 16:28:07
相关问题
HarmonyOS ListItem滑动编辑后如何复原?
178浏览 • 1回复 待解决
滑动组件如何实现单边spring效果
812浏览 • 1回复 待解决
如何将List回弹效果改为阴影效果
354浏览 • 1回复 待解决
实现层叠广告滑动效果
754浏览 • 1回复 待解决
HarmonyOS 如何将svg图片导入到项目
391浏览 • 1回复 待解决
HarmonyOS服务与原子服务
12490浏览 • 2回复 待解决