Skip to content

Commit

Permalink
bug fix for issue #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Manabu-GT committed Nov 12, 2014
1 parent eba7dfc commit 2832de2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ public void onAnimationStart(Animation animation) {
applyAlphaAnimation(mTv, mAnimAlphaStart);
}
@Override
public void onAnimationEnd(Animation animation) { }
public void onAnimationEnd(Animation animation) {
// clear animation here to avoid repeated applyTransformation() calls
clearAnimation();
}
@Override
public void onAnimationRepeat(Animation animation) { }
});
Expand Down

0 comments on commit 2832de2

Please sign in to comment.