Reputation: 143
I have a RecyclerView
and I need to enlarge only the center item with animation.
I have to change it's size:
It is something like carousel, I need to achieve this effect with RecyclerView
.
Any suggestions?
Upvotes: 1
Views: 4508
Reputation: 101
I've been trying something close to what you're trying and have found these links very useful. You can extend the classes there to suit your need:-
https://github.com/Azoft/CarouselLayoutManager (this is what i've used in my application)
3D Carousel in Android (this could perhaps give you more of an idea)
Upvotes: 1