Android Study

Image Rotate_2(Right)

85chong 2023. 10. 13. 10:51
728x90
반응형
SMALL

* 이미지 회전 시키는 방법-2

(좌측 기준으로 움직이며, 우측이 값의 영향을 받는다.)

 

* 빨간점이 기준점

 

    // +10f : 아래로 내려간다
    // -10f : 위로 올라간다
    var changeValue = 10f

    //이미지 좌측 기준으로 10도 꺽을때 (우측이 올라갔다,내려갔다 함)
    private fun changeImageRotateRight() {
        imageView.pivotX = 0f//좌측기준
        val animator = ObjectAnimator.ofFloat(
            imageView,
            "rotation",
            changeValue, changeValue)
        animator.start()
    }

 

- 끝 -