RandomTextView icon indicating copy to clipboard operation
RandomTextView copied to clipboard

滚动显示TextView的数字,支持自定义每个字符速度。欢迎star,fork,Issues。v1.4

Results 11 RandomTextView issues
Sort by recently updated
recently updated
newest added

if (autoOverLine == numLength * 2 - 1) { stopAnimatorLoop(); //invalidate(); animating = false; } 需要注释掉invalidate(); 不然一直递归调用

我这边如果数字里面有1,最后一个数字又不是1,最后一个数字会显示不完整,比如123,3就显示不完整

连续多运行几次之后速度变快是啥原因

``` 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];...

![image](https://user-images.githubusercontent.com/11407793/85012907-55becd80-b196-11ea-916a-d42a52a9fdd3.png) 你这一直在循环跑

有几率UI线程卡顿时候就会出现如下情况