gpt4 book ai didi

java - 在 Android 中检测左右 Swing (onFling 和 OnGestureListener)

转载 作者:太空宇宙 更新时间:2023-11-03 12:12:05 25 4
gpt4 key购买 nike

我正在尝试检测用户何时在 Activity 中向左或向右 Swing 。目前我正在使用 OnGestureListener 和方法 onFling()我的问题是我没有找到一种很好的检测方法。

我想要一种类似于其他应用程序和“ native ”Android Swing 检测的行为,但是使用代码(附在下面)我有很多错误的 Swing 检测。如果有人已经解决了我想要小费 =)

这就是我正在使用的代码

@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,float velocityY) {
//Get Position
float ev1X = e1.getX();
float ev2X = e2.getX();

//Get distance of X (e1) to X (e2)
final float xdistance = Math.abs(ev1X - ev2X);
//Get velocity of cursor
final float xvelocity = Math.abs(velocityX);

if( (xvelocity > SWIPE_MIN_VELOCITY) && (xdistance > SWIPE_MIN_DISTANCE) )
{
if(ev1X > ev2X)//Switch Left
{
if (Manager.debug) Log.d(Manager.appname,"SWING_LEFT_EVENT");
moveToRight();
}
else//Switch Right
{
if (Manager.debug) Log.d(Manager.appname,"SWING_RIGHT_EVENT");
moveToLeft();
}
}

return false;
}

最佳答案

我不确定这有多大用处,但我就是这样做的。

private static final int SWIPE_MIN_DISTANCE = 120;
private static final int SWIPE_MAX_OFF_PATH = 250;
private static final int SWIPE_THRESHOLD_VELOCITY = 100;
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
Log.d("---onFling---", e1.toString() + e2.toString() + "");

try {
if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH)
return false;
// right to left swipe
if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
//do your code

} else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
//left to right flip
}
}
} catch (Exception e) {
// nothing
}
return false;
}

关于java - 在 Android 中检测左右 Swing (onFling 和 OnGestureListener),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6977734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com