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