Erick Velasco
Erick Velasco

Reputation: 124

What is this component - Android

I'm developing an Android application, and I want the effects of the Google music app, like that...

enter image description here

(The image of albums up with the list but more slow)

and

enter image description here

(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

Answers (1)

MLProgrammer-CiM
MLProgrammer-CiM

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

Related Questions