myinnos / AlphabetIndex-Fast-Scroll-RecyclerView

A Powerful AlphabetIndex FastScroller Library for Android's RecyclerView!
https://myinnos.github.io/AlphabetIndex-Fast-Scroll-RecyclerView/
Apache License 2.0
603 stars 114 forks source link

How to scroll at specific section #58

Closed avisingh736 closed 5 years ago

avisingh736 commented 5 years ago

I want to scroll it to "F" section when it opens, Is it possible? have tried with mAdapter?.let { it.getPositionForSection(6) it.notifyDataSetChanged() }

mAdapter?.let { it.getSectionForPosition(6) it.notifyDataSetChanged() }

myinnos commented 5 years ago

you can use the below default method on Activity int mScrollPosition = 5; Objects.requireNonNull(mRecyclerView.getLayoutManager()).scrollToPosition(mScrollPosition);