1

我想一个接一个地玩 2 个动画绘图。

当第一个停止时,另一个必须开始..

问题是:

AnimationListener 无法使用动画绘制

有人知道解决方案吗?

谢谢你

4

1 回答 1

1

试试这个代码

 final Handler handler = new Handler();
                                handler.postDelayed(new Runnable() {
                                  public void run() {
                                      //start 2nd animation
                                  }
                                }, delay);//delay is the time for how long 1st animation takes to complete
于 2013-04-02T12:18:25.247 回答