Adding animation to recyclerview items

Updated 16 March 2017

Save

It is pretty interesting to make to your app attractive and not making the user bored while using the app. Obviously, it’s the user interface and the performance of the app that makes the user like it.

In this blog, we will learn about adding animations to your Recyclerview items as they are created.

All you need to do is to add animations to each view holder inside Recyclerview Adapter’s onBindViewHolder Function.

As you can see in the above code segment that we have created a variable animation and provided the context and animation which is to be used as the parameters. This animation is applied to the holder.itemView.

This will animate the view every time it is created.

 

However, If you want the animations to happen only once and not every time the view is created then you can follow the below code segment

The above code segment compares the last position with the position of the view created and will onanimate the view if the lastPosition is lesser than the current item position.

 

That’s all you need to make your Recyclerview animate. Create you own customised animations and try different combinations like this

This code will set the slide_in_left and slide_in_right animations alternatively on each view of the Recyclerview.

 

Thank you very much, this is Vedesh Kumar signing off.

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


2 comments

  • Sahil
    • Vedesh Kumar
  • Start a Project


      Message Sent!

      If you have more details or questions, you can reply to the received confirmation email.

      Back to Home