StickyHeaders icon indicating copy to clipboard operation
StickyHeaders copied to clipboard

Adapter and LayoutManager for Android RecyclerView which enables sticky header positioning.

Results 66 StickyHeaders issues
Sort by recently updated
recently updated
newest added

When we delete the last item, the animation is wrong, because all items move up, but they need to move down.

Since `ItemViewHoldersetPositionInSection(positionInSection)` is only called in `onBindViewHolder` the method `ItemViewHolder.getPositionInSection()` returns wrong value when new items were inserted and `SectionAdapter.notifySectionItemInserted` was called.

I found one issue ``` @Override public void onBindItemViewHolder(ItemViewHolder viewHolder, int sectionIndex, int itemIndex, int itemType) { int sectionPosition = includeHeader ? sectionIndex - 1 : sectionIndex; switch (itemType) {...

Hello I have `List` object of `FeedProvider` one feedprovider included `List` of ViewModels. I want to get hashcode of one viewmodel object. ``` @Override public long getItemId(int position) { int...

Hi , i am using your lib to sticky header , i have an Tab layout with 2 fragments and when i try to get data from database in background...

First of all thanks for this lib, it's great! I don't know why this error occurs. i just click on the item very quickly. `java.lang.NullPointerException at org.zakariya.stickyheaders.StickyHeaderLayoutManager.getViewViewHolder(StickyHeaderLayoutManager.java:599) at org.zakariya.stickyheaders.StickyHeaderLayoutManager.getViewAdapterPosition(StickyHeaderLayoutManager.java:603) at...