이미지를 화면에 출력하는 뷰
ImageView에 출력할 이미지 설정
리소스 이미지, 파일 이미지, 네트워크 이미지 등을 출력
android:src="@drawable/image3
ImageView가 출력하는 이미지의 최대 크기 지정
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="100dp"
android:maxHeight="100dp"
android:adjustViewBounds="true"
android:src="@drawable/lake_1"
android:background="#0000ff"/>
adjustViewBounds는 가로세로 비율 유지하는 속성
Do it! 깡쌤의 안드로이드 프로그래밍 with 코틀린 (개정판)