Я не могу добавить проект с простой анимацией на страницу фрагмента.
Ниже приведен код анимации:
Код: Выделить всё
fun ImageView.applyLoopingAnimatedVectorDrawable(
@DrawableRes animatedVector: Int,
endDelay: Long = 0,
disableLooping: Boolean = false
) {
val animated = AnimatedVectorDrawableCompat.create(context, animatedVector)
if (!disableLooping) {
animated?.registerAnimationCallback(object : Animatable2Compat.AnimationCallback() {
override fun onAnimationEnd(drawable: Drawable?) {
Handler(Looper.getMainLooper()).postDelayed({
this@applyLoopingAnimatedVectorDrawable.post { animated.start() }
},
endDelay)
}
})
}
this.setImageDrawable(animated)
animated?.start()
}
Код: Выделить всё
Подробнее здесь: https://stackoverflow.com/questions/790 ... oid-kotlin