Giter VIP home page Giter VIP logo

Comments (2)

joost-klitsie avatar joost-klitsie commented on August 17, 2024 1

Old issue but I didn't use this before so maybe this is helpful for others that are searching in 2019. Workaround in Kotlin:

class ListAdapter(
	private val items: List<ListObject>
) : RecyclerView.Adapter<RecyclerView.ViewHolder>(), StickyHeaders {

	private var stickyHeadersObserver: RecyclerView.AdapterDataObserver? = null

	override fun registerAdapterDataObserver(observer: RecyclerView.AdapterDataObserver) {
		super.registerAdapterDataObserver(observer)
		if (observer::class.java.enclosingClass == StickyHeadersLinearLayoutManager::class.java) {
			stickyHeadersObserver = observer
		}
	}

	override fun unregisterAdapterDataObserver(observer: RecyclerView.AdapterDataObserver) {
		super.unregisterAdapterDataObserver(observer)
		if (observer == stickyHeadersObserver) {
			stickyHeadersObserver = null
		}
	}

	fun updateItems(newItems: List<ListObject>) {
		// Create a DiffUtil.DiffResult and dispatch it
		getListDiff(items, newItems).dispatchUpdatesTo(this) 
		this.items= newItems
		stickyHeadersObserver?.onChanged()
	}
}

Basically you can catch the observer and then call onchanged yourself after setting the new items. Because the observer class is a private inner class of StickyHeadersLinearLayoutManager, we check if the enclosing class is that one and therefore we know we have the correct observer. This is made with version 1.0.1.

from stickyheaders.

AlBlanc avatar AlBlanc commented on August 17, 2024

I personally use SortedList(https://developer.android.com/reference/android/support/v7/util/SortedList) in my SectioningAdapter (one for each section)

from stickyheaders.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.