Lottiej簡介
Lottie是一款動畫庫勘天,支持Android Ios H5 RN等語言钧汹,實現(xiàn)方式是通過AE做成的動畫導(dǎo)出JSON文件猴娩,然后前端使用Lottie直接加載JSON文件生成動畫钟些。
Android 使用
1.把AE 制作好的AE文件放到assets文件夾中
2 引入Lottie框架
implementation 'com.airbnb.android:lottie:1.5.1'
3 布局引用
<com.airbnb.lottie.LottieAnimationView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:lottie_autoPlay="true"
app:lottie_fileName="newAnimation.json"
app:lottie_loop="true" />