호랑이 개발일기

[Java][Android]안드로이드 로띠(Lottie) 사용법 본문

Android

[Java][Android]안드로이드 로띠(Lottie) 사용법

박개발 2022. 11. 20. 11:14
728x90
 로띠를 사용함으로써 귀여운 일러스트와 모션을 적용할 수 있다.


 

 

1. 로띠 홈페이지에 들어가 마음에 드는걸 json형식으로 다운로드하여오자.

 

 

 

 

2. 우선 임포트를 시켜야 한다.

implementation 'com.airbnb.android:lottie:3.0.7'

 

 

3. Assets 폴더를 만든 후 파일을 복붙 해서 넣어야 한다.

 

 

 

이러한 식으로 넣고 실행하면 끝~~!

 

<com.airbnb.lottie.LottieAnimationView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="8dp"
android:contentDescription="@string/app_name"
app:lottie_fileName="cooking.json" //요기에 내 로띠 파일 넣기~~
app:lottie_loop="true" app:lottie_autoPlay="true" //계속 실행할 건지~~ />

 

728x90
Comments