1
클릭 할 때마다 고정 된 각도로 이미지를 회전해야합니다. 이 코드를 사용하여 임 : 미리 가져온 위치를 기반으로 회전 애니메이션
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
>
<rotate
android:fromDegrees="0"
android:toDegrees="-45"
android:duration="500"
android:toYScale="0.0"
android:pivotX="50%"
android:pivotY="50%"/>
</set>
의이 시도 :
ObjectAnimator imageViewObjectAnimator = ObjectAnimator.ofFloat(img,
"rotation", 0f, 45f);
imageViewObjectAnimator.setDuration(1000);
imageViewObjectAnimator.start();
그러나마다 애니메이션 prewiosly 애니메이션 얻었다 위치를 무시하고, 초기 위치로부터 시작한다. 그래서, - 기초가 각각의 클릭 후 한 방향으로 이미지를 45도 회전시키는 방법 ???
감사합니다. 이미 다른 해결책을 찾으십시오. RotateAnimation rotateAnim = new RotateAnimation (rotationValue, rotationValue + = rotationStep, RotateAnimation.RELATIVE_TO_SELF, 0.5f, RotateAnimation.RELATIVE_TO_SELF, 0.5f); 그것은 작동한다;)) –
아, 그것은 꽤 아프다, 멋진 사람! – Sipty