Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想一个接一个地玩 2 个动画绘图。
当第一个停止时,另一个必须开始..
问题是:
AnimationListener 无法使用动画绘制
有人知道解决方案吗?
谢谢你
试试这个代码
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