What is the problem here below ?
layout = (FrameLayout)findViewById(R.id.currency);
//this animation is not working
RotateAnimation an = new RotateAnimation(0.0f, -360.0f, 400, 500);
an.setRepeatCount(-1);
an.setDuration(10000);
an.setFillAfter(true);
//this animation is working
Animation rotateAnim = AnimationUtils.loadAnimation(this,R.anim.rotate);
rotateAnim.setRepeatCount(-1);
animController = new LayoutAnimationController(rotateAnim, 10000); //I applied animation here
layout.setLayoutAnimation(animController);
anim/rotate.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:toDegrees="-360"
android:pivotX="50%"
android:pivotY="50%"
android:duration="5000">
</rotate>
What I really wanted is rotate a Framelayout in circular passion according to the finger touch.. if first animation works then I hope, I can change the degree and rotate the view.. any help?
Edit: Below layout is rotating by 90 degree on touch event but its child is not rotating..
see this image i placed button for each country using table layout...

Code:
case MotionEvent.ACTION_DOWN: {
double d=getDegreesFromTouchEvent(event.getX(),event.getY());
from=to;
to=to+90;
RotateAnimation an = new RotateAnimation((float)from,
(float)to, deviceWidth/2, deviceHeight/2);
an.setDuration(1000);
an.setFillAfter(true);
layout.startAnimation(an);