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()
}
- 끝 -
'Android Study' 카테고리의 다른 글
동적 변경 뷰 만들기(constrainlayout, chainStyle, bias) (1) | 2023.10.17 |
---|---|
Image Rotate_3(Left) (0) | 2023.10.13 |
Image Rotate_1(center) (0) | 2023.10.13 |
앱 링크 친구에게 공유하기 기능(문자열 형태로 데이터 전달) (0) | 2023.10.05 |
구글 앱스토어 정책 변경으로 인한 , 심사 제출 전 설치 테스트 방법 (0) | 2023.09.26 |