Android Study

Image Rotate_1(center)

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

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

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

 

* 빨간점이 기준점

 

 

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

    //이미지 중앙을 기준으로 10도 꺽을때
    private fun changeImageRotateCenter() {
        val animator = ObjectAnimator.ofFloat(
            imageView,
            "rotation",
        changeValue, changeValue)
        animator.start()
    }

 

- 끝 -