Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android animate() withEndAction() vs setListener() onAnimationEnd()

Often I use ViewPropertyAnimator and set end action using its withEndAction() function like:

view.animate().translationY(0).withEndAction(new Runnable() {
    @Override
    public void run() {
        // do something
    }
}).start();

But also you can set end action setting special listener like:

view.animate().translationY(0).setListener(new AnimatorListenerAdapter() {
    @Override
    public void onAnimationEnd(Animator animation) {
        // do something
    }
});

So what is the difference between these two approaches and when I should use each of them?

like image 555
Vitaly Zinchenko Avatar asked Dec 08 '15 09:12

Vitaly Zinchenko


1 Answers

There is no big difference, take a look at the souce code.

Both are executed on onAnimationEnd.

But the runnable gets removed after it was started. So The Runnable is just executed once and the Listener might be called multiple times.

@Override
public void onAnimationEnd(Animator animation) {
    mView.setHasTransientState(false);
    if (mListener != null) {
        mListener.onAnimationEnd(animation);  // this is your listener
    }
    if (mAnimatorOnEndMap != null) {
        Runnable r = mAnimatorOnEndMap.get(animation); // this is your runnable
        if (r != null) {
            r.run();
        }
            mAnimatorOnEndMap.remove(animation);
    }
    if (mAnimatorCleanupMap != null) {
        Runnable r = mAnimatorCleanupMap.get(animation);  
        if (r != null) {
            r.run();
        }
        mAnimatorCleanupMap.remove(animation);
    }
    mAnimatorMap.remove(animation);
}
like image 186
foxy Avatar answered Nov 15 '22 12:11

foxy