You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FastScroller is trying to get section title for item with negative index when RecyclerViews items are cleared while in active scroll with section bubble visible. That can lead to ArrayIndexOutOfBoundsException in application code.
java.lang.ArrayIndexOutOfBoundsException: length=0; index=-1
at java.util.ArrayList.get(ArrayList.java:310)
at my.Adapter.getSectionTitle(MyAdapter.java:123)
at com.futuremind.recyclerviewfastscroll.FastScroller.setRecyclerViewPosition(FastScroller.java:250)
at com.futuremind.recyclerviewfastscroll.FastScroller.access$500(FastScroller.java:21)
at com.futuremind.recyclerviewfastscroll.FastScroller$2.onTouch(FastScroller.java:195)
at android.view.View.dispatchTouchEvent(View.java:9371)
The text was updated successfully, but these errors were encountered:
dmitry-novikov
changed the title
Calling SectionTitleProvider.getSectionTitle with negative (-1) index
Calling SectionTitleProvider.getSectionTitle with negative (-1) index
Jun 6, 2017
FastScroller
is trying to get section title for item with negative index whenRecyclerView
s items are cleared while in active scroll with section bubble visible. That can lead toArrayIndexOutOfBoundsException
in application code.The text was updated successfully, but these errors were encountered: