어떻게 RotateAnimation 인스턴스의 회전 속도를 줄일 수 있습니까? 다음 코드 스 니펫을 사용하여 애니메이션을 수행합니다.안드로이드에서 RotateAnimation의 속도를 줄이는 방법
rotateAnimation = new RotateAnimation(currentRotation, currentRotation + (360 * 5), Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
currentRotation = (currentRotation + (360 * 5));
rotateAnimation.setDuration(10000);
rotateAnimation.setInterpolator(new LinearInterpolator());
rotateAnimation.setRepeatCount(Animation.INFINITE);
rotateAnimation.setRepeatMode(Animation.INFINITE);
rotateAnimation.setFillEnabled(true);
rotateAnimation.setFillAfter(true);
rotateAnimation.setAnimationListener(animationInListener);
recordRingImageView.startAnimation(rotateAnimation);
속도 = 거리/시간 이후의 지속 시간을 증가시킨다. 따라서 10000 기간을 늘리십시오. –