So i wrote a custom item animator for my recyclerv...
# random
l
So i wrote a custom item animator for my recyclerview but for some reason the add animation does not run at all if i add my items in the
onCreate, onStart, onResume
lifecycle callbacks. I did debug the animator and realized that the methods are not even called if the items are added during the previously mentioned lifecycle callbacks. However it works very well if i add them in
onEnterAnimationComplete
but that is not ideal. Any experienced android developer here that knows the right way of doing this?
stackoverflow 1