我想实施一些小任务或致电invalidateOptionsMenu();
每当动画由mCardScrollView.animate(position, Animation.INSERTION);
完成时
完成了。所以我想知道有没有办法实现这一点。
我是否必须为此编写自己的动画回调?
答案 0 :(得分:0)
您可以使用withEndAction
方法在动画成功完成后执行您想要的操作。
Runnable endAction = new Runnable() {
public void run() {
//do something
}
};
mCardScrollView.animate(position, Animation.INSERTION).withEndAction(endAction);
希望这有帮助。