[Android] ScalableLayout
2020. 4. 17. 20:19
ScalableLayout 사용하기
1. gradle에 추가
2. xml 추가
1. build.gradle(Module:app) - dependencies에 추가
implementation 'com.ssomai:android.scalablelayout:2.1.6'
2. xml에서 사용하기
<com.ssomai.android.scalablelayout.ScalableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/adView"
android:background="@android:color/holo_blue_light"
app:scale_base_width="500"
app:scale_base_height="800">
</com.ssomai.android.scalablelayout.ScalableLayout>
※참고링크
국내에서 만들었고 "에브리씽"이라는 앱에도 적용되었습니다.
https://github.com/ssomai/ScalableLayout/blob/master/README_ko.md
'안드로이드 > Android' 카테고리의 다른 글
[Android] Jsoup을 이용해 fragment에서 웹크롤링하기 (1) | 2020.04.22 |
---|---|
[Android] 애드몹 광고 (0) | 2020.04.17 |
[Android] RecyclerView (0) | 2020.04.10 |
[Android] 로딩화면 구현 (0) | 2020.04.06 |
[Android]상태바 및 타이틀바 제거 (0) | 2020.02.26 |