2017-11-15 11 views
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도 회전시키는 방법 ???

답변

0

행렬을 사용하여 ImageView을 회전 시키려고 했습니까? 여기에 내가 내 이전 응용 프로그램에서 가져온 몇 가지 예제 코드는 다음과 같습니다

Matrix matrix = new Matrix(); 
imageView.setScaleType(ImageView.ScaleType.MATRIX); 
matrix.postRotate((float) angle, pivotX, pivotY); 
imageView.setImageMatrix(matrix); 

그냥의 ImageViewonTouchListener을 추가 그것의 외부 처음 2 개 라인과 수신기 내부의 마지막 2를 정의합니다. 그런 다음 누를 때마다 피벗 양만큼 회전합니다.

+1

감사합니다. 이미 다른 해결책을 찾으십시오. RotateAnimation rotateAnim = new RotateAnimation (rotationValue, rotationValue + = rotationStep, RotateAnimation.RELATIVE_TO_SELF, 0.5f, RotateAnimation.RELATIVE_TO_SELF, 0.5f); 그것은 작동한다;)) –

+0

아, 그것은 꽤 아프다, 멋진 사람! – Sipty