最佳答案
我在机器人中有一个 EditText
视图。在这一点上,我想检测滑动左或右。我能够得到它在一个空白的空间使用下面的代码。但是,当我在 EditText
上滑动时,这不工作。我该怎么做?如果我做错了什么,请告诉我。谢谢你。
代码使用:
switch (touchevent.getAction())
{
case MotionEvent.ACTION_DOWN:
{
oldTouchValue = touchevent.getX();
break;
}
case MotionEvent.ACTION_UP:
{
float currentX = touchevent.getX();
if (oldTouchValue < currentX)
{
// swiped left
}
if (oldTouchValue > currentX )
{
swiped right
}
break;
}
}