Closed
Description
I just upgraded from 1.7.5 to 1.9.2 and most of my app's content was not shown anymore. In lots of places I fade in/out content with AdditiveAnimator. After two hours of searching for the root cause I switched from 1.9.2 back to 1.9.1 and suddenly everything is working again.
Might there be a bug in 1.9.2? I saw that lots of visibility/fade related framework code has been changed in 1.9.2.
This is a typical pattern which works in 1.9.1 but does NOT work in 1.9.2:
AdditiveAnimator.animate(contentViews)
.setDuration(UI.CARDS_INTRO_DURATION)
.setInterpolator(new DecelerateInterpolator())
.fadeVisibility(show ? View.VISIBLE : View.GONE)
.start();
Am I missing something?