2

我正在android中开发一个游戏应用程序。我对记分卡的实施感到震惊。我想在文本视图中显示分数,因为数字不断计算移动。例如:假设用户越过一个障碍并且该障碍的得分是200。那么记分卡中的数字应该从0到200平稳地计数,然后将停止在200。我在papiJump的记分卡中看到了这种类型的动画。

请指导我。

4

2 回答 2

4
ValueAnimator animator   = ValueAnimator.ofInt(int start, int end);
              animator.setDuration(2000);
              animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
                    public void onAnimationUpdate(ValueAnimator animation) {
                        textView.setText(animation.getAnimatedValue().toString());
                    }
                });

                animator.start();
于 2017-07-26T10:17:51.623 回答
0
public void animateTextView(int initialValue, int finalValue, final TextView textview)
 {
  DecelerateInterpolator decelerateInterpolator = new DecelerateInterpolator(0.8f);
        int start = Math.min(initialValue, finalValue);
        int end = Math.max(initialValue, finalValue);
        int difference = Math.abs(finalValue - initialValue);
        Handler handler = new Handler();
        for (int count = start; count <= end; count++) {
            int time = Math.round(decelerateInterpolator.getInterpolation((((float) count) / difference)) * 100) * count;
            final int finalCount = ((initialValue > finalValue) ? initialValue - count : count);
            handler.postDelayed(new Runnable() {
                @Override
                public void run() {
                    textview.setText(finalCount + "");
                }
            }, time);
        }
    }
于 2017-04-22T12:08:56.553 回答