1. 비율 맞추기
- 1:1 비율로 맞추기 위해서는 Android에서 제공하는 support lib를 등록해야한다.
compile 'com.android.support:percent:28.0.0'
2. aspectRatio
- aspectRatio 속성을 이용해서 비율을 맞춰준다.
<ImageView
android:src="@drawable/img_fblogo"
android:background="#493"
app:layout_aspectRatio="100%"
app:layout_widthPercent="100%"
android:adjustViewBounds="true"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
'앱 개발자 역량 > Android' 카테고리의 다른 글
암시적 Broadcast Receiver가 제대로 동작하지 않는 이유 (0) | 2021.03.17 |
---|---|
안드로이드 VPN 연결 방법 (0) | 2021.01.19 |
Android ] DrawerLayout (0) | 2019.06.19 |
Android ] EditText 스타일 (0) | 2019.06.07 |
[안드로이드] No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android 에러 (0) | 2019.06.04 |