HarmonyOS 组件通过onTouch改变position中Y的值,再次点击空间会跳回原位

想做一个可以拖拽的空间,通过ontouch事件修改控件的position的Y值 但是手指松开再次点击到控件组件就会跳回原位,如何防止跳回原位?demo:

@State touchY: number = 0  
@State questionViewX:number = 100  
@State questionViewY:number = 100  
Stack(){  
Column(){  
      Image($r('app.media.close_circle_8a8a8a')).width('20vp').height('20vp').objectFit(ImageFit.Cover)  
      Image($r('app.media.UnionLogo')).width('60vp').height('60vp')  
    }  
    .position({x:this.questionViewX,y:this.questionViewY})  
    .onTouch((event: TouchEvent) => {  
      if(event){  
        if (event.type === TouchType.Down) {  
          this.touchY =  event.changedTouches[0].y  
        }  
        if (event.type === TouchType.Move) {  
          let dy = event.changedTouches[0].y - this.touchY  
          this.questionViewY  = 100+dy  
        }  
        if (event.type === TouchType.Up) {  
          // this.touchY = 0  
        }  
      }  
    })  
    .focusOnTouch(true)  
    .alignItems(HorizontalAlign.End)  
}
HarmonyOS
2024-10-09 12:39:38
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

demo中用100+dy是初始高度加位移高度,所以会回到初始高度附近,建议换成 this.questionViewY = this.questionViewY+dy。

下面这个demo可以解决移动的问题,点击也不会返回原位:

@Entry  
@Component  
struct DragPage {  
  @State message: string = 'Hello World';  
  @State touchYInit: number = 0;  
  @State questionViewX: number = 100;  
  @State questionViewY: number = 100;  
  @State isDrag: boolean = false;  
  build() {  
    Stack() {  
      Column() {  
        Image($r('app.media.ic_banner02')).width('20vp').height('20vp').objectFit(ImageFit.Cover)  
        Image($r('app.media.ic_product04')).width('60vp').height('60vp')  
      }  
      .position({ x: this.questionViewX, y: this.questionViewY })  
      .onTouch((event: TouchEvent) => {  
        if (event) {  
          console.log(event.changedTouches[0].y.toString());  
          if (event.type === TouchType.Down) {  
            this.touchYInit = event.changedTouches[0].windowY - this.questionViewY;  
          }  
          if (event.type === TouchType.Move) {  
            this.questionViewY = event.changedTouches[0].windowY - this.touchYInit;  
          }  
        }  
      })  
      .focusOnTouch(true)  
      .alignItems(HorizontalAlign.End)  
    }  
  }  
}
分享
微博
QQ
微信
回复
2024-10-09 17:38:22
相关问题
HarmonyOS如何获取inputTextX,Y
390浏览 • 1回复 待解决
点击拒接按钮后无法再次来电
1962浏览 • 1回复 待解决
HyperlinkonTouch预览报错
1821浏览 • 1回复 待解决
HarmonyOS 如何实现Y轴旋转?
182浏览 • 1回复 待解决
在XComponent组件如何改变背景颜色
352浏览 • 1回复 待解决