본문 바로가기

lottie

[Android] Lottie setImagesFolder Error 해결방법 (You must set an images folder before loading an image. Set it with LottieComposition setImagesFolder or LottieDrawable setImagesFolder) 안녕하세요 YTS 입니다. 오늘은 Android App에서 Lottie 라이브러리를 사용하다가 나오는 에러인 setImagesFolder 문제의 해결방법을 알아보겠습니다. 에러로그는 밑에와 같이 출력이 될텐데요. You must set an images folder before loading an image. Set it with LottieComposition setImagesFolder or LottieDrawable setImagesFolder 우선 첫번째로 에러가 발생한부분의 LottieAnimationView 부분을 찾아보셔야합니다. 딱보니 LottieAnimationView에서 intro.json 파일에 어떤 문제가 있는게 확실하겠네요 animation json 파일이기때문에 엄청나게 많은 내..
[안드로이드] lottie (airbnb 로티) 사용하기 안녕하세요 남갯입니다 오늘은 lottie AirBnB에서 사용하는 애니메이션을 사용하는 방법을 알려드리도록 하겠습니다 https://github.com/airbnb/lottie-android lottie github https://www.lottiefiles.com/ lottie sample 로티 관련 애니메이션 모아둔곳 이렇게 asset 폴더를 쉽게 만드실 수 있습니다 만들고나서 2번째 sample 사이트에서 다운로드한 json 파일을 이렇게 asset 폴더에 넣어줍니다 그 후 gradle에 *18년 8월 2일 기준 버젼 dependencies { implementation 'com.airbnb.android:lottie:2.5.5' } 를 넣어줍니다 넣어준 후 xml 파일에 이런 형태로 넣어줍니다 f..