-1

该代码用于每 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);
4

1 回答 1

1

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

这将确保它已经完全停止并且应该是流畅的,给用户你想要的体验。

如何停止动画(cancel() 不起作用)

阅读更多:

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

问候,

于 2013-05-25T03:32:39.213 回答