当手指处于同一个位置时,我想继续接收触摸坐标,这意味着获得
CASE.MOVE_DOWN
连续地进行。
现在问题是android只给出了
CASE.MOVE_UP
CASE.MOVE_DOWN
CASE.MOVE_MOVE
无论如何都要获得连续触摸.. ???
答案 0 :(得分:0)
尝试使用此代码:
double placeX, placeY;
yourView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
placeX = event.getX(); //Store the coordinates of the touch in the meantime
placeY = event.getY();
return true;
}
});