i am using a project from codepanda "gestureimageview" succesfully, and i've got to move and rotate any View, but, when i touch another View, whatever, my rotated View is returned to the original position and with no rotation. In some cases i've got to keep the view in the last rotated position, executing:
imgRotate.buildDrawingCache(false);
imgRotate.destroyDrawingCache();
But this option keep freezed my View imgRotate, and after that if i want to move again i have to execute:
imgRotate.buildDrawingCache(true);
Anyway, if i do that last sentence, my View is returned again to the original position.
What am i missing in my code?
Thanks guys!!!