在小米mx2上手指没移动touchstart瞬间触发move事件

cocos createor2.43在部分机型下手指没有移动也走了touchmove事件
系统 安卓
编辑器版本2.43
目前我是这样子解决的
let touchPos = eve.getDelta()
if(Math.abs(touchPos.x) <0.01 && Math.abs(touchPos.x) <0.01){
return
}
目前我是这样子解决的这个略坑

1赞

我的k20pro尊贵版就没误触发问题
两个点位置一样怎么能算移动了