I want to scroll it to "F" section when it opens, Is it possible?
have tried with
mAdapter?.let { it.getPositionForSection(6) it.notifyDataSetChanged() }
you can use the below default method on Activity
int mScrollPosition = 5;Objects.requireNonNull(mRecyclerView.getLayoutManager()).scrollToPosition(mScrollPosition);
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() }