So, I'm trying to create a game using the joystick on the screen, which moves the bitmap around the screen. But when I hold the joystick in any direction and keep it, the bitmap will also stop moving. Its only when I move the joystick makes a raster movement. Basically I want to hold the joystick in the left position, and the raster movement moves to the left until I let go. Everything else in the code works. Any suggestions?
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) {
source share