0
我看到很多問題,但沒有找到任何類似的模式。我研究了很多。 我有一個圖像旋轉在36°。 我用過setFillAfter()和setFillEnabled()。這是保存位置,但如果我再次旋轉它從原來的位置開始。我希望它從旋轉後的位置開始。點擊一次後圖像開始從起始位置旋轉
Animation animation = new Animation (0,36, Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f);
animation.setDuration(3000);
animation.setInterpolator(new LinearInterpolator());
animation.setFillAfter(true);
myImage.startAnimation(animation);