RandomTextView icon indicating copy to clipboard operation
RandomTextView copied to clipboard

代码CR

Open Nullifier1571 opened this issue 4 years ago • 0 comments

private ValueAnimator.AnimatorUpdateListener animatorUpdateListener = new ValueAnimator.AnimatorUpdateListener() {
        @Override
        public void onAnimationUpdate(ValueAnimator animation) {
            if (animating) {
                for (int j = 0; j < numLength; j++) {
                    speedSum[j] -= speedList[j];
                }
                invalidate();
            } else {
                stopAnimatorLoop();
            }
        }
    };

这里 stopAnimatorLoop(); 为啥不改标记位置animating=false

Nullifier1571 avatar Jun 24 '20 03:06 Nullifier1571