I'm trying to create an app which is parsing HTML data into RecyclerView
. Using JSoup
, I'm trying to make:
NavigationView
.Full code is on GitHub, I've already opened an issue. The thing is content doesn't load properly - after inflating
Fragment
no data is being shown, although I can see a successful creation of ArrayList
with my data in logs.I think the problem is with the
ViewHolder
inside ContentAdapter
. I've put the Log.d
inside both onCreateViewHolder
and onBindViewHolder
- no logs are shown during load process.
Every single data there is public, as the app is being created for local grant project - it'll also be published in Play Store when finished.
Thanks in advance for any help provided!