gpt4 book ai didi

java - Android 多点触控 - TouchMove 事件中的 IllegalArgumentException

转载 作者:行者123 更新时间:2023-11-30 01:17:58 26 4
gpt4 key购买 nike

我正在尝试获取指针列表,它们是否向下,以及它们在屏幕上的像素位置,以便我可以将我的桌面游戏移植到 Android。为此,我编写了这个 onTouch 处理程序。

private boolean onTouch(View v, MotionEvent e)
{
final int action = e.getActionMasked();

switch (action)
{
case MotionEvent.ACTION_DOWN:
surfaceView.queueEvent(() -> postTouchEvent(FINGER_0, true, e.getX(), e.getY()));
break;

case MotionEvent.ACTION_UP:
surfaceView.queueEvent(() -> postTouchEvent(FINGER_0, false, e.getX(), e.getY()));
break;

case MotionEvent.ACTION_POINTER_DOWN:
case MotionEvent.ACTION_POINTER_UP:
{
final int index = e.getActionIndex();
final int finger = index + 1;

if (finger < FINGER_1 || finger > FINGER_9)
break;

final boolean isDown = action == MotionEvent.ACTION_POINTER_DOWN;
surfaceView.queueEvent(() -> postTouchEvent(finger, isDown, e.getX(), e.getY()));
}
break;

case MotionEvent.ACTION_MOVE:
for (int i = 0; i < e.getPointerCount(); i++)
{
final int finger = i + 1;

if (finger < FINGER_0 || finger > FINGER_9)
break;

surfaceView.queueEvent(() ->
postTouchEvent(finger, true, e.getX(finger - 1), e.getY(finger - 1)));
}
for (int i = e.getPointerCount(); i < FINGER_9; i++)
{
final int finger = i + 1;
surfaceView.queueEvent(() -> postTouchEvent(finger, false, 0, 0));
}
break;
}

return true;
}

但是,问题出在 ACTION_MOVE 事件上,我得到一个 IllegalArgumentException 来访问我的索引 ID。只有当我同时在屏幕上点击三个或更多手指时才会发生这种情况,但这仍然是一个问题。异常情况如下。

FATAL EXCEPTION: GLThread 61026
Process: com.shc.silenceengine.tests.android, PID: 23077
java.lang.IllegalArgumentException: pointerIndex out of range
at android.view.MotionEvent.nativeGetAxisValue(Native Method)
at android.view.MotionEvent.getX(MotionEvent.java:2014)
at com.shc.silenceengine.backend.android.AndroidInputDevice.lambda$onTouch$14(AndroidInputDevice.java:228)
at com.shc.silenceengine.backend.android.AndroidInputDevice.access$lambda$6(AndroidInputDevice.java)
at com.shc.silenceengine.backend.android.AndroidInputDevice$$Lambda$7.run(Unknown Source)
at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1462)
at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1239)

我不确定为什么会出现错误,因为我只在 e.getPointerCount() 之前执行 for 循环,因此索引不可能超出代码。

我不想跟踪指针 ID,我只想要一个原始的指针列表,这些事件在我的引擎列表中组成到下一帧。

有人指出问题出在哪里吗?

最佳答案

您正在从一个单独的(稍后的)线程调用 e.getX()e.getY() - MotionEvent 对象的内部状态在 onTouch() 回调和线程执行之间发生了变化。

您应该只假设 MotionEvent 对象在 onTouch() 方法期间有效并检索 getX()getY() 在方法退出之前传递给线程。

关于java - Android 多点触控 - TouchMove 事件中的 IllegalArgumentException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37552878/

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