안드로이드에서 이미지를 부드럽게 회전시키는 방법은 무엇입니까?
RotateAnimationAndroid에서 커스텀 주기적 스피너로 사용하는 이미지를 회전시키는 데 a 를 사용하고 있습니다. 여기 내 rotate_indefinitely.xml파일이 있습니다 res/anim/. <?xml version="1.0" encoding="UTF-8"?> <rotate xmlns:android="http://schemas.android.com/apk/res/android" android:fromDegrees="0" android:toDegrees="360" android:pivotX="50%" android:pivotY="50%" android:repeatCount="infinite" android:duration="1200" /> 이것을 ImageView사용에 적용하면 AndroidUtils.loadAnimation()훌륭하게 작동합니다! spinner.startAnimation( AnimationUtils.loadAnimation(activity, R.anim.rotate_indefinitely) ); 한 가지 문제는 이미지 순환이 모든 사이클의 상단에서 일시 중지되는 것 같습니다. …