在textview中计数动画的数量

时间:2012-04-12 12:29:46

标签: android

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

请指导我。

2 个答案:

答案 0 :(得分: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);
        }
    }

答案 1 :(得分:0)

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();