안드로이드 앱 개발을 하다보면 ImageView에 이미지를 뒤집고 싶을 때가 있다 물론 두 가지 이미지를 사용할 수도 있겠으나 이 방법이 싫다면 scale를 사용해보자
구현 방법
구현 방법은 매우 간단한데 Kotlin으로는 아래와 같고
좌우
1
binding.imageView.scaleX = -1f
상하
1
binding.imageView.scaleY = -1f
Xml로는 아래와 같이 할 수 있다
좌우
1
2
3
4
5
<ImageView
android:scaleX="-1f"
android:src="@drawable/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
상하
1
2
3
4
5
<ImageView
android:scaleY="-1f"
android:src="@drawable/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>