Sometimes I see code like
view.animate().alpha(1).start();
And sometimes
view.animate().alpha(1);
What (if any) is the difference?
The animation always starts but from my understanding of the source code two entirely different things happen in the background before it does so depending on the start call.