Simple widget for recycler view - displaying dots indicators of currently selected page - with some fancy animation when dataset is large.
Large dataset displays only fixed amount of dots centered around currently selected page with a nice little scaling animation of indicators on the edges. Provides fluent animation of selecting new page.
Small dataset displays classic dot indicators line with currently selected page highlighted.
RecyclerView should be configured with snapping to pages vie PagerSnapHelper subclass ~ simulates behavior of classic ViewPager
✔️ Overflowed indicators | ❌ Classic confusing indicators |
---|---|
Disclaimer: Having too many pages in recycler means that user needs to swipe a lot. Different layout/ui may be more user friendly.
In your gradle add dependency:
compile "cz.intik:overflow-pager-indicator:$latestVersion"
Some layout with RecyclerView and OverflowPagerIndicator
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="120dp"
/>
<cz.intik.overflowindicator.OverflowPagerIndicator
android:id="@+id/view_pager_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom"
app:dots_xxx
/>
</FrameLayout>
Attach OverflowPagerIndicator (usually after LayoutManager and Adapter setup) to RecyclerView - for listening to dataset changes
overflowPagerIndicator.attachToRecyclerView(recyclerView);
Attach SimpleSnapHelper to recycler view which will change selected page in indicator view as items in recycler view are snapped
SimpleSnapHelper snapHelper = new SimpleSnapHelper(overflowPagerIndicator);
snapHelper.attachToRecyclerView(recyclerView);
Or use any other implementation of PagerSnapHelper or even some custom logic which will call:
OverflowPagerIndicator#onPageSelected(int position)
app:dots_fill_color="#ff0000"
app:dots_stroke_color="#000000"
app:dots_max_count="7"
app:dots_size="5dp"
app:dots_stroke_width="2dp"
app:dots_margin="2dp"
1.2.1 bugfix (thanks Sajad Abasi)