Skip to content

Commit

Permalink
Merge pull request #4577 from billdawson/timob-13132
Browse files Browse the repository at this point in the history
TIMOB-13132 Android: Default to linear interpolation.
  • Loading branch information
ayeung committed Aug 19, 2013
2 parents 4bdc691 + f84ad1f commit 6e131f4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,8 @@ private void addAnimation(AnimationSet animationSet, Animation animation)

private void addAnimator(List<Animator> list, ValueAnimator animator)
{
animator.setInterpolator(new LinearInterpolator());

// repeatCount is ignored at the AnimatorSet level, so it needs to
// be set for each member animator manually. Same with
// repeat mode.
Expand Down

0 comments on commit 6e131f4

Please sign in to comment.