airbnb / epoxy

Epoxy is an Android library for building complex screens in a RecyclerView
https://goo.gl/eIK82p
Apache License 2.0
8.5k stars 733 forks source link

Page Indicator for Carousel #571

Closed qbait closed 5 years ago

qbait commented 5 years ago

What's the best way to show View Pager Indicator similar to https://github.com/JakeWharton/ViewPagerIndicator for Carousel

eboudrant commented 5 years ago

You can use a RecyclerView.ItemDecoration, see https://stackoverflow.com/questions/33841363/how-to-make-a-page-indicator-for-horizontal-recyclerview

elihart commented 5 years ago

you can try something like https://github.com/rbro112/Android-Indefinite-Pager-Indicator

this isn't related to epoxy - any vanilla recyclerview approach will work. You would likely need to create a new custom view that subclasses or encapsulates the carousel

alouanemed commented 5 years ago

@elihart How can I subclass the built-in carousel to achieve this? Thanks.