android lottie字体json,lottie-android
build.gradlefile:dependencies?{
compile?'com.airbnb.android:lottie:1.0.1'
}
lottie 支持 Jellybean (API 16) 及以上。最簡單的使用方式是和LottieAnimationView一起使用:
android:id="@+id/animation_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:lottie_fileName="hello-world.json"
app:lottie_loop="true"
app:lottie_autoPlay="true"?/>
你可以在代碼里動態的加載。加載app/src/main/assets中的json:LottieAnimationView?animationView?=?(LottieAnimationView)?findViewById(R.id.animation_view);
animationView.setAnimation("hello-world.json");
animationView.loop(true);
這個方法將加載文件并在后臺解析動畫,解析完成即開始異步渲染。
如果你想復用動畫比如列表的每個item中或者從網絡請求一個JSONObject:LottieAnimationView?animationView?=?(LottieAnimationView)?findViewById(R.id.animation_view);
...
LottieComposition?composition?=?LottieComposition.fromJson(getResources(),?jsonObject,?(composition)?->?{
animationView.setComposition(composition);
animationView.playAnimation();
});
然后你就可以控制動畫并添加listener了:animationView.addAnimatorUpdateListener((animation)?->?{
//?Do?something.
});
animationView.playAnimation();
...
if?(animationView.isAnimating())?{
//?Do?something.
}
...
animationView.setProgress(0.5f);
...
//?Custom?animation?speed?or?duration.
ValueAnimator?animator?=?ValueAnimator.ofFloat(0f,?1f)
.setDuration(500);
animator.addUpdateListener(animation?->?{
animationView.setProgress(animation.getAnimatedValue());
});
animator.start();
...
animationView.cancelAnimation();
在底層LottieAnimationView使用LottieDrawable來渲染動畫,如果你需要,你可以直接使用drawable:LottieDrawable?drawable?=?new?LottieDrawable();
LottieComposition.fromAssetFileName(getContext(),?"hello-world.json",?(composition)?->?{
drawable.setComposition(composition);
});
如果你的動畫被頻繁使用,LottieAnimationView有一個可選的緩存策略:LottieAnimationView#setAnimation(String, CacheStrategy)。CacheStrategy可以是?Strong,?Weak, 或者?None
總結
以上是生活随笔為你收集整理的android lottie字体json,lottie-android的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 图像haar特征提取 c语言,基于C语言
- 下一篇: android进程自动启动时间,如何统计