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);
4

1 回答 1

0

签出AnimationSet或在动画 XML 中<set>标记。

于 2012-04-17T17:26:35.683 回答