Android动画闪烁

时间:2013-05-24 21:18:16

标签: java android

代码用于每200毫秒均匀地更改文本颜色。为什么第一个版本会变化不均匀/闪烁,而第二个版本会均匀变化?

               //first version
                long lt = System.currentTimeMillis(); 
                TextView tv = ...   
                 for (int i = 1; i < 120; i++) {
                final int cl = i % 2 == 0 ? 0xFFFF0000 : 0x00000000;
                Message w = Message.obtain(handler, new Runnable() {
                    public void run() {
                        tv.setTextColor(cl);
                        tv.requestLayout();

                    }
                });

                handler.sendMessageDelayed(w,i * 200L - (System.currentTimeMillis()-lt));

            }

                 //second version
            Animation anim = new AlphaAnimation(0.0f, 1.0f);
            anim.setDuration(200); //You can manage the time of the blink with this parameter
            anim.setStartOffset(20);
            anim.setRepeatMode(Animation.RESTART);
            anim.setRepeatCount(Animation.INFINITE);
            tv.startAnimation(anim);

1 个答案:

答案 0 :(得分:1)

创建/使用动画之前我遇到过这个问题。完成动画后,只需致电clearAnimation()

这将确保它完全停止并且应该美观顺畅,为用户提供您想要的体验。

How to stop an animation (cancel() does not work)

了解更多:

http://developer.android.com/reference/android/view/View.html

此致