Reputation: 124
I'm developing an Android application, and I want the effects of the Google music app, like that...
(The image of albums up with the list but more slow)
and
(The list of albums is in squares and this in from down)
I don't how to investigate what these effects are. Can someone tell me what it's called?
Thanks :)
Upvotes: 1
Views: 116
Reputation: 17257
The first one is a scroll parallax. Look into CoordinatorLayout or a ParallaxScroll effect.
The second one is a layout animation added to RecyclerView: https://stackoverflow.com/a/26748274/1266326
Upvotes: 2