HarmonyOS 鸿蒙Next 如何实现List长按控件实现拖拽效果

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

HarmonyOS 鸿蒙Next 如何实现List长按控件实现拖拽效果

请问如何实现List长按控件实现拖拽效果?
List的editMode方法弃用了,没有替代方案,那要怎么实现拖拽

2 回复

可以参考以下DEMO:

import curves from '[@ohos](/user/ohos).curves';

import Curves from '[@ohos](/user/ohos).curves'

// xxx.ets

[@Entry](/user/Entry)

[@Component](/user/Component)

struct ListItemExample {

[@State](/user/State) private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

[@State](/user/State) dragItem: number = -1

[@State](/user/State) scaleItem: number = -1

[@State](/user/State) neighborItem: number = -1

[@State](/user/State) neighborScale: number = -1

private dragRefOffset: number = 0

[@State](/user/State) offsetX: number = 0

[@State](/user/State) offsetY: number = 0

private ITEM_INTV: number = 120

scaleSelect(item: number): number {

if (this.scaleItem == item) {

return 1.05

} else if (this.neighborItem == item) {

return this.neighborScale

} else {

return 1

}

}

itemMove(index: number, newIndex: number): void {

let tmp = this.arr.splice(index, 1)

this.arr.splice(newIndex, 0, tmp[0])

}

build() {

Stack() {

List({ space: 20, initialIndex: 0 }) {

ForEach(this.arr, (item: number) => {

ListItem() {

Text('' + item)

.width('100%')

.height(100)

.fontSize(16)

.textAlign(TextAlign.Center)

.borderRadius(10)

.backgroundColor(0xFFFFFF)

.shadow(this.scaleItem == item ? { radius: 70, color: '#15000000', offsetX: 0, offsetY: 0 } :

{ radius: 0, color: '#15000000', offsetX: 0, offsetY: 0 })

.animation({ curve: Curve.Sharp, duration: 300 })

}

.margin({ left: 12, right: 12 })

.scale({ x: this.scaleSelect(item), y: this.scaleSelect(item) })

.zIndex(this.dragItem == item ? 1 : 0)

.translate(this.dragItem == item ? { y: this.offsetY } : { y: 0 })

.gesture(

// 以下组合手势为顺序识别,当长按手势事件未正常触发时则不会触发拖动手势事件

GestureGroup(GestureMode.Sequence,

LongPressGesture({ repeat: true })

.onAction((event?: GestureEvent) => {

animateTo({ curve: Curve.Friction, duration: 300 }, () => {

this.scaleItem = item

})

})

.onActionEnd(() => {

animateTo({ curve: Curve.Friction, duration: 300 }, () => {

this.scaleItem = -1

})

}),

PanGesture({ fingers: 1, direction: null, distance: 0 })

.onActionStart(() => {

this.dragItem = item

this.dragRefOffset = 0

})

.onActionUpdate((event: GestureEvent) => {

this.offsetY = event.offsetY - this.dragRefOffset

// console.log('Y:' + this.offsetY.toString())

this.neighborItem = -1

let index = this.arr.indexOf(item)

let curveValue = Curves.initCurve(Curve.Sharp)

let value: number = 0

//根据位移计算相邻项的缩放

if (this.offsetY < 0) {

value = curveValue.interpolate(-this.offsetY / this.ITEM_INTV)

this.neighborItem = this.arr[index-1]

this.neighborScale = 1 - value / 20;

console.log('neighborScale:' + this.neighborScale.toString())

} else if (this.offsetY > 0) {

value = curveValue.interpolate(this.offsetY / this.ITEM_INTV)

this.neighborItem = this.arr[index+1]

this.neighborScale = 1 - value / 20;

}

//根据位移交换排序

if (this.offsetY > this.ITEM_INTV / 2) {

animateTo({ curve: curves.interpolatingSpring(0, 1, 400, 38) }, () => {

this.offsetY -= this.ITEM_INTV

this.dragRefOffset += this.ITEM_INTV

this.itemMove(index, index + 1)

})

} else if (this.offsetY < -this.ITEM_INTV / 2) {

animateTo({ curve: curves.interpolatingSpring(0, 1, 400, 38) }, () => {

this.offsetY += this.ITEM_INTV

this.dragRefOffset -= this.ITEM_INTV

this.itemMove(index, index - 1)

})

}

})

.onActionEnd((event: GestureEvent) => {

animateTo({ curve: curves.interpolatingSpring(0, 1, 400, 38) }, () => {

this.dragItem = -1

this.neighborItem = -1

})

animateTo({

curve: curves.interpolatingSpring(14, 1, 170, 17), delay: 150

}, () => {

this.scaleItem = -1

})

})

)

.onCancel(() => {

animateTo({ curve: curves.interpolatingSpring(0, 1, 400, 38) }, () => {

this.dragItem = -1

this.neighborItem = -1

})

animateTo({

curve: curves.interpolatingSpring(14, 1, 170, 17), delay: 150

}, () => {

this.scaleItem = -1

})

})

)

}, (item: number) => item.toString())

}

}.width('100%').height('100%').backgroundColor(0xDCDCDC).padding({ top: 5 })

}

}

在HarmonyOS鸿蒙Next系统中实现List长按控件的拖拽效果,通常涉及以下几个关键步骤:

  1. 事件监听:首先,需要在List控件中为每个子项设置长按事件监听器,用于捕捉用户的长按行为。

  2. 拖拽状态管理:当用户长按并拖动某个子项时,系统需要进入拖拽状态,并记录被拖拽的子项及其当前位置。

  3. 视觉反馈:在拖拽过程中,提供视觉反馈(如改变子项的颜色、大小或添加阴影)以指示当前正在拖拽的元素。

  4. 重新排序:根据用户的拖拽动作,动态调整List中子项的顺序,并在拖拽结束时更新数据源。

  5. 边界检测:确保拖拽过程中不会超出List的边界,避免界面错乱。

  6. 释放与取消:当用户松开手指时,完成拖拽操作;若拖拽过程中用户取消操作(如快速滑动手指离开屏幕),则恢复List的原状。

实现这些功能需要综合运用HarmonyOS提供的UI框架、事件处理机制和动画效果等。开发者需参考HarmonyOS官方文档,使用相应的API和组件来完成。

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

回到顶部