TellH / RecyclerStickyHeaderView

Sticky header view or suspending view for RecyclerView.
Apache License 2.0
345 stars 57 forks source link

Sticky header view keeps stuck. #12

Open akashmehta opened 6 years ago

akashmehta commented 6 years ago

I have 2 non sticky views and one sticky view. When i scroll to bottom and return to top sticky keeps stuck and it repeated on screen. I tried it for multiple times but it happens only on fast scrolling please find output in attachment. Thank you. device-2018-06-16-174908 device-2018-06-16-174938

iamdeadman commented 5 years ago

Hi,

I am having the same issue too. I have a non-sticky view and a sticky view along with multiple items of each type. When I fast scroll to top, the first item gets removed from view somehow and is not shown anymore.

Were you able to find a solution / alternate ?

akashmehta commented 5 years ago

@iamdeadman I used this as an alternative https://github.com/sokarcreative/BasicStuffRecyclerview

aivision369 commented 4 years ago

I have also used this library and I have also faced this issue. After keep work on 5 to 6 hours I got the solution that whenever I got the updated Databeans new ArrayList or List then I am not reset complete stickyRecyclerview but I am just refresh the adapter as below.

if (adapter != null) {
     adapter.refresh(dataBeanListTemp);
}

I hope someone will get some help.........