我想在彼此之后玩2个动画画片。
当第一个停止时,另一个必须启动..
问题是:
使用animationdrawables
无法使用AnimationListener有人知道解决方案吗?
谢谢
答案 0 :(得分: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