Android简单TextView动画

前端之家收集整理的这篇文章主要介绍了Android简单TextView动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个我想倒数的TextView(3 … 2 … 1 ……事情发生了).

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

有一个简单的方法吗?

解决方法

尝试这样的事情:
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);
 }

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

原文链接:https://www.f2er.com/android/316599.html

猜你在找的Android相关文章