Android简单TextView动画

时间:2012-01-31 02:26:26

标签: android animation text textview zebra-striping

我有一个我想倒数的TextView(3 ... 2 ...... 1 ......事情发生了)。

为了让它更有趣,我希望每个数字都以完全不透明度开始,并逐渐淡出透明度。

有一种简单的方法吗?

3 个答案:

答案 0 :(得分:13)

尝试这样的事情:

 private void countDown(final TextView tv, final int count) {
   if (count == 0) { 
     tv.setText(""); //Note: the TextView will be visible again here.
     return;
   } 
   tv.setText(String.valueOf(count));
   AlphaAnimation animation = new AlphaAnimation(1.0f, 0.0f);
   animation.setDuration(1000);
   animation.setAnimationListener(new AnimationListener() {
     public void onAnimationEnd(Animation anim) {
       countDown(tv, count - 1);
     }
     ... //implement the other two methods
   });
   tv.startAnimation(animation);
 }

我只是输入它,所以它可能无法按原样编译。

答案 1 :(得分:4)

我已经使用了更传统的Android风格动画:

        ValueAnimator animator = new ValueAnimator();
        animator.setObjectValues(0, count);
        animator.addUpdateListener(new AnimatorUpdateListener() {
            public void onAnimationUpdate(ValueAnimator animation) {
                view.setText(String.valueOf(animation.getAnimatedValue()));
            }
        });
        animator.setEvaluator(new TypeEvaluator<Integer>() {
            public Integer evaluate(float fraction, Integer startValue, Integer endValue) {
                return Math.round((endValue - startValue) * fraction);
            }
        });
        animator.setDuration(1000);
        animator.start();

您可以使用0count值来使计数器从任意数字变为任意数字,并使用1000来设置整个动画的持续时间。

请注意,这支持Android API等级11及更高版本,但您可以使用强大的nineoldandroids项目轻松向后兼容。

答案 2 :(得分:2)

看看CountDownAnimation

我首先尝试了@dmon解决方案,但由于每个动画都是在上一个动画结束时开始的,因此在几次调用后最终会出现延迟。

因此,我实施了使用CountDownAnimationHandler函数的postDelayed类。默认情况下,它使用alpha动画,但您可以设置任何动画。您可以下载项目here