luizgrp / SectionedRecyclerViewAdapter

An Adapter that allows a RecyclerView to be split into Sections with headers and/or footers. Each Section can have its state controlled individually.
MIT License
1.68k stars 372 forks source link

onBindViewHolder with payloads #111

Closed yccheok closed 6 years ago

yccheok commented 6 years ago

In RecyclerView.Adapter, there's a function named.

    public void onBindViewHolder(VH holder, int position, List<Object> payloads) {
        onBindViewHolder(holder, position);
    }

Can we modify SectionedRecyclerViewAdapter and Section, so that Section is able to receive payloads? Thank you.

yccheok commented 6 years ago

Sorry. I notice there's a same ticket https://github.com/luizgrp/SectionedRecyclerViewAdapter/issues/100 regarding my request. I'm closing this issue.