앱 개발자 역량/Android
Android ] Aspect Ratio
it_블로거
2019. 6. 11. 11:36
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" />