我在应用程序中遇到动画问题, 以及系统时间可以更改的事实。 我以这种方式创建动画对象 :
animator = new Animator(600, Animator.INFINITE, Animator.RepeatBehavior.REVERSE, setter);
The setter is an alpha property that is varying from 0.0 to 1.0. The problem is that whenever i change the system time, the animation stops/blocks. It restarts sometimes after a while, depending on the system time i set. Is there a way that i can fix this ? Thanks a lot.