0
xml에 Animation.RELATIVE_TO_SELF를 정의하고 코드에 정의 할 필요가 있습니까? 내 애니메이션 애니메이션 (XML에서 정의 된)와 함께 이동하려면 회전 애니메이션을 추가하려고하지만 아래 코드는 작동하지 않으며 xml에서 pivotXType 매개 변수를 찾을 수 있습니다. ...이로테이션 애니메이션을 추가하여 애니메이션을 번역하는 방법은 무엇입니까?
anim = new RotateAnimation(0, 10,
Animation.RELATIVE_TO_SELF, 0, Animation.RELATIVE_TO_SELF,
0);
anim.setInterpolator(interpolator);
anim.setDuration(mDuration);
anim.setFillEnabled(true);
anim.setFillAfter(true);
((AnimationSet)view_1_anim_c).addAnimation(anim);
apa1.startAnimation(view_1_anim_c);