You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 12, 2019. It is now read-only.
I've viewpager with 5 fragments one of the fragment has recyclerView
private val recyclerView : RecyclerView by bindView(R.id.list)
It works find once it first appears but one I move to other fragment and return to the fragment that has list, the list does not appear and I get recyclerview No adapter attached; skipping layout
I switch to regular view.findViewById(). the issue has been resolve.
it looks bindView does not bind to fragment's view or something
I've viewpager with 5 fragments one of the fragment has recyclerView
private val recyclerView : RecyclerView by bindView(R.id.list)
It works find once it first appears but one I move to other fragment and return to the fragment that has list, the list does not appear and I get
recyclerview No adapter attached; skipping layoutI switch to regular view.findViewById(). the issue has been resolve.
it looks bindView does not bind to fragment's view or something