반응형
ImageView에 사진을 추가했을때 아래와 같이 붉은 박스의 위,아래로 공백이 생기는 문제가 발생될 수 있습니다.
이는 width의 길이는 사진과 화면의 비율에 맞게 조정되었지만 heigth의 길이는 기존 이미지의 크기가 유지되었기 때문입니다.
위, 아래 공백 제거는 아래 속성을 통해 height 길이 비율을 조정할 수 있습니다.
# android:adjustViewBounds="true"
- 화면에 맞는 이미지 비율로 조정
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/image111"
/>
반응형
'IT > Android' 카테고리의 다른 글
Android QUERY_ALL_PACKAGES를 사용하는 앱에 대한 선언 가이드 (0) | 2023.02.24 |
---|---|
Android 미디에이션 적용 시 데이터 보안 섹션 설정 (0) | 2023.02.17 |
Android Intent로 데이터 전달 #Feat. Serializable, Parcelable (16) | 2022.12.02 |
Android 앱 WebView 로 애드센스 노출 시 주의점. (2) | 2022.11.17 |
Android BottomNavigationView 색상 변경 방법 (icon, text, background) (1) | 2022.10.19 |
댓글