I have made a spinning disc which rotates on its own centre point by using:
r = new RotateAnimation(ROTATE_FROM, ROTATE_TO, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
It works fine, but I now want the disc to stop as the user touches it (and possibly be able to spin it via a finger) depending how difficult that bit would be. I've looked forever on other posts and there only seems to be way over-complicated solutions which im not even sure would work for this anyway.
Thanks as always guys