I tried to fetch some JSON into a RecyclerView when searching for some book, all looks fine to me, but when searching the RecyclerView doens't show up.
I got this error in Logcat: E/RecyclerView: No adapter attached; skipping layout
that's the only thing returning an error, but I did set the recyclerView.setAdapter(adapter);
I'm using Google Books API to search ISBN using the phone camera, and also search book titles, authors and keywords. My aim is to show matching/similar books from search inside the RecyclerView, then the user can choose which one he wants, click and open another activity with the book info there.
Few points to be noted:
- I've tried all the solutions for "No adapter attached; skipping layout" in recyclerview No adapter attached; skipping layout thread and all associated duplicate threads.
Here's my Github repo: ISBN Scanner
I don't know what to do now, I'm getting mad at this. >:(