gpt4 book ai didi

Android 0nTouch 事件问题 [Swipe DOWN and UP]

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

我有一个应用程序需要像 Iphone 中的 onTouch 滑动事件。他们是

  1. 向上滑动。
  2. 向下滑动。
  3. 向左滑动。
  4. 向右滑动。

我按如下方式实现了 onTouch 事件。我得到了正确的向左和向右滑动操作。但这是实现向下和向上滑动操作的正确方法。

我的代码:

    float downXValue,downYValue;

@Override
public boolean onTouchEvent(MotionEvent arg1) {

// Get the action that was done on this touch event
switch (arg1.getAction())
{
case MotionEvent.ACTION_DOWN:
{
// store the X value when the user's finger was pressed down
downXValue = arg1.getX();
downYValue = arg1.getY();
break;
}

case MotionEvent.ACTION_UP:
{
// Get the X value when the user released his/her finger
float currentX = arg1.getX();
float currentY=arg1.getY();

// going backwards: pushing stuff to the right
if (downXValue < currentX)
{
Log.d(DEBUG_TAG, "Right");
}

// going forwards: pushing stuff to the left
if (downXValue > currentX)
{

Log.d(DEBUG_TAG, "Left");
}
break;
}
}

//GestureListener is called here...

//return gestures.onTouchEvent(event);


return true;
}

谢谢。

最佳答案

那...呢

if (downYValue < currentY)
{
Log.d(DEBUG_TAG, "Down");
}

你确定上面的代码是你写的吗?

编辑

好吧,我相信你。你要做的基本上是:

double sizeInX = Math.abs(downXValue - currentX);
double sizeInY = Math.abs(downYValue - currentY);
if( sizeInX > sizeInY ){
// you better swipe horizontally
} else {
// you better swipe vertically
}

关于Android 0nTouch 事件问题 [Swipe DOWN and UP],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5698839/

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