You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 19, 2018. It is now read-only.
AnimatorInflater.loadAnimator() does not appear to properly set the TypeEvaluator to ArgbEvaluator if valueFrom or valueTo is set to a color. This is due to the fact that ValueAnimator.setEvaulator() does nothing if no values have been set.
So if in AnimatorInflater.loadAnimator() these lines are uncommented as in the orignial framework code:
AnimatorInflater.loadAnimator()
does not appear to properly set theTypeEvaluator
toArgbEvaluator
if valueFrom or valueTo is set to a color. This is due to the fact thatValueAnimator.setEvaulator()
does nothing if no values have been set.So if in
AnimatorInflater.loadAnimator()
these lines are uncommented as in the orignial framework code://TypeEvaluator evaluator = null;
and
is changed to
it should work properly.
The text was updated successfully, but these errors were encountered: