gpt4 book ai didi

Android 简单的 TextView 动画

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:12:09 25 4
gpt4 key购买 nike

我有一个 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);
}

我只是打出来的,所以它可能无法按原样编译。

关于Android 简单的 TextView 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9073642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com