Android Lottie加载gson文件动画

一:Lottie的使用
在你工程的build.gradle文件里添加如下配置

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

二:布局文件直接引入LottieAnimationView

 
    

例如:文件放置目录在这里插入图片描述

如此,动画就能跑起来了:
1.lottie_fileName:在app/src/main/assets目录下的动画json文件名。
2.lottie_loop:动画是否循环播放,默认不循环播放。
3.lottie_autoPlay:动画是否自动播放,默认不自动播放。
4.lottie_imageAssetsFolder:动画所依赖的图片目录,在app/src/main/assets/目录下的子目录,该子目录存放所有图片。

你还可以在代码中这样使用:

LottieAnimationView animationView = (LottieAnimationView) findViewById(R.id.lottie_view);
animationView.setAnimation("lottie_loading.json");//在assets目录下的动画json文件名。
animationView.loop(true);//设置动画循环播放
animationView.setProgress(0.5f);//progress范围0~1f,设置动画进度
animationView.setImageAssetsFolder("images/");//assets目录下的子目录,存放动画所需的图片
animationView.playAnimation();//播放动画
animationView.cancelAnimation();//结束播放



你可能感兴趣的:(android)