airbnb / epoxy

Epoxy is an Android library for building complex screens in a RecyclerView
https://goo.gl/eIK82p
Apache License 2.0
8.46k stars 730 forks source link

No adapter attached Warning message #1310

Open lukicmarko opened 1 year ago

lukicmarko commented 1 year ago

When the fragment is reopened I get the message "RecyclerView: No adapter attached; skipping layout" and EpoxyRecyclerView now shows the list items. I found that for "regular" android RecyclerView you should set a new LayoutManager after each Fragment view recreation, Is there any solution for Epoxy

viroth-ty commented 1 year ago

My suggestion: Try to clear adapter on destroyView of Fragment override fun onDestroyView() { super.onDestroyView() binding.bookRecyclerView.adapter = null }