I want to rotate an image by 360 degrees using onTouch. With the code i had used the maximum rotation i am getting is 120 degrees. The code i had used is
this is the code in onTouch event
case MotionEvent.ACTION_MOVE:
newRot = rotation(event);
float r = newRot - d;
matrix.postRotate(r, view.getMeasuredWidth()/ 2, view.getMeasuredHeight()/ 2);
and the rotation method is
private float rotation(MotionEvent event) {
double delta_x = (event.getX(0) - event.getX(1));
double delta_y = (event.getY(0) - event.getY(1));
double radians = Math.atan2(delta_y, delta_x);
Log.v("", "=================xxxxxxxxxxxvvvxx==============" + Math.toDegrees(radians));
return (float) Math.toDegrees(radians);
}
with this code i am getting only 120 degrees rotation on both clockwisw and anti-clockwise. Please suggest me, Did i need to change anything in my code or any working code.
This method might help you it works for me.