반응형
가끔 이미지를 ImageView로 보여주려는 경우 이미지 사이즈에 맞게 사이즈가 조절이 되지 않는 경우가 있을 겁니다.
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
android:src="@drawable/scr01_01" />
※ 확실한 구분을 보여주기 위해 레이아웃 배경을 빨강(android:background="#ff0000")으로 설정해주었습니다.
이때 아래와 같이
android:adjustViewBounds="true"
를 추가해주면 다음과 같이 적용됨을 확인하실 수 있습니다.
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
android:adjustViewBounds="true"
android:src="@drawable/scr01_01" />
반응형
'개발 창고 > Android' 카테고리의 다른 글
[Android] More than one file was found with OS independent path 'META-INF/DEPENDENCIES'. (0) | 2020.11.20 |
---|---|
[Android] Toolbar에서 로고 위치 오른쪽으로 보내기 (0) | 2020.10.28 |
[Android] 알림 그룹만들기 (0) | 2020.09.28 |
[Android] net::ERR_CACHE_MISS에 대한 해결방법 (0) | 2020.09.24 |
[Google Play] 2020년 9월 17일자 안내메일 (0) | 2020.09.17 |