기루 기룩 기록

안드로이드 스튜디오 07 - 이미지 출력하기 본문

Android Studio

안드로이드 스튜디오 07 - 이미지 출력하기

남기루 2019. 11. 3. 17:50
반응형

 

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxHeight="500dp"
android:maxWidth="500dp"
android:src="@drawable/ic_launcher_foreground"
android:background="@drawable/ic_launcher_background"
/>

 

android:maxHeight: 최대 높이

android:maxWidth: 최대 폭

android:src: 출력할 이미지

android:background: 배경

 

반응형