4

因此,我正在尝试使用屏幕上的操纵杆构建游戏,该操纵杆可以在屏幕上移动位图。但是当我向任何方向按住操纵杆并保持在那里时,位图也将停止移动。只有当我移动操纵杆时,位图才会移动。基本上我希望能够按住操纵杆在左边的位置,让位图向左移动,直到我放手。代码中的其他所有内容都有效。有什么建议么?

public boolean onTouch(View v, MotionEvent event) { 
        if (event.getAction() == MotionEvent.ACTION_DOWN)
            _dragging = true;
        else if (event.getAction() == MotionEvent.ACTION_UP)
            _dragging = false;

        _touchingPoint = new Point();

        if (_dragging) {
            // get the pos
            int x = (int) event.getX();
            int y = (int) event.getY();
            _touchingPoint.x = x;
            _touchingPoint.y = y;

            double a = _touchingPoint.x - initx;
            double b = _touchingPoint.y - inity;
            controllerDistance = Math.sqrt((a * a) + (b * b));

            if (controllerDistance > 75) {
                a = (a / controllerDistance) * 75;
                b = (b / controllerDistance) * 75;
                _touchingPoint.x = (int) a + initx;
                _touchingPoint.y = (int) b + inity;
            }

            bitmapPoint.x += a * .05;
            bitmapPoint.y += b * .05;

        } else if (!_dragging) {
            // Snap back to center when the joystick is released
            _touchingPoint.x = initx;
            _touchingPoint.y = inity;
        }
}
4

2 回答 2

2

试试这个它是 Android 屏幕操纵杆的开源 api。

于 2013-06-14T11:02:07.910 回答
1

这是因为我只有在 onTouch 方法中增加位图位置的代码。当屏幕被触摸但不移动时,未注册事件。下面的代码应该在 onTouch 方法之外。

bitmapPoint.x += a * .05;
bitmapPoint.y += b * .05;
于 2012-07-20T06:35:27.390 回答