Lottie的使用
Posted lgz0921
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lottie的使用相关的知识,希望对你有一定的参考价值。
首先是设置lottie的播放位置:
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/my_lottie"
android:layout_width="12dp"
android:layout_height="12dp"
android:layout_centerInParent="true"
android:visibility="invisible" />
然后就可以播放lottie了:
// my_lottie(这里就不写findViewById了,我这里直接用id来简单表示一下)
private fun playMyLottie() {
my_lottie.visibility = View.VISIBLE
my_lottie.setAnimation(lottie资源)
my_lottie.playAnimation()
}
如果需要在lottie播放前后等做一些事情的话,还需要加lottie的监听事件:
// my_lottie(这里就不写findViewById了,我这里直接用id来简单表示一下)
my_lottie.addAnimatorListener(object :
Animator.AnimatorListener {
override fun onAnimationStart(animation: Animator?) {
}
override fun onAnimationEnd(animation: Animator?) {
}
override fun onAnimationCancel(animation: Animator?) {
}
override fun onAnimationRepeat(animation: Animator?) {
}
})
以上是关于Lottie的使用的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Typescript 中将 ref prop 和 useRef 与 Lottie 文件一起使用?