(ValueAnimator animation)
| 121 | private void initListener() { |
| 122 | mUpdateListener = new ValueAnimator.AnimatorUpdateListener() { |
| 123 | @Override |
| 124 | public void onAnimationUpdate(ValueAnimator animation) { |
| 125 | mAnimatorValue = (float) animation.getAnimatedValue(); |
| 126 | invalidate(); |
| 127 | } |
| 128 | }; |
| 129 | |
| 130 | mAnimatorListener = new Animator.AnimatorListener() { |
nothing calls this directly
no outgoing calls
no test coverage detected