Android
[Android] 안드로이드 - Lottie 란 무엇인가? (앱에 움직이는 이미지 넣기)
NukeOlaf
2020. 1. 4. 20:06
Lottie Docs
airbnb.io
1. 로띠는 Airbnb 에서 만든 애니메이션 라이브러리이다.
깃헙 주소
https://github.com/airbnb/lottie-android
https://github.com/airbnb/lottie
아래 사이트에 들어가면 애니메이션들을 다운로드 받을 수 있다.
GIF 나 PNG 를 사용하는 것보다 훨씬 빠른 속도와 용량으로 애니메이션을 보여줄 수 있다는 장점이 있어 사용한다고 한다.
2. 로띠 사용법
(1) build.gradle 에 의존성을 추가한다
implementation "com.airbnb.android:lottie:3.3.1"
(2) src > main > 에 assets 디렉토리를 추가하고 json 형식으로 되어있는 로띠 이미지 파일을 추가한다
(3) layout 에 LottieAnimationView 를 추가한다
<com.airbnb.lottie.LottieAnimationView
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:lottie_autoPlay="true"
app:lottie_loop="true"
app:lottie_fileName="loading.json"/>
참고 사이트>>