在android4.0以下用以下代码可以实现自转的效果
       RotateAnimation animationnew = new RotateAnimation(
                        0, 360, RotateAnimation.RELATIVE_TO_SELF, 0.5f, RotateAnimation.RELATIVE_TO_SELF, 0.5f);
        animationnew.setInterpolator(new LinearInterpolator());
        animationnew.setDuration(1000);
        animationnew.setRepeatCount(-1);
        animationnew.setFillAfter(true);
但在android4.0版本及却不能正常的自转,而是以偏右下角的一个点为自转点。
请问高手们,
1,为什么会出现此现象?是安卓版本设计问题?还是升级版本有特殊设计?
2,如果在android4.0实现自转?Android