workofgao

Results 1 comments of workofgao

``` case MotionEvent.ACTION_MOVE: changeX = event.getRawX() - lastX; changeY = event.getRawY() - lastY; newX = (int) (mFloatView.getX() + changeX); newY = (int) (mFloatView.getY() + changeY); Log.e("floatTest","newY is " + newY...