I'm using Android Studio 3.0.1. The project compiles and runs but (using the emulator), but I just get a white screen for the MainActivity. Duplicated on Samsung Note 5 running Android 7. White Screen.
E/RecyclerView: No adapter attached; skipping layout
FIXED!
added: recyclerView.setHasFixedSize(true); at the end of setupList method.
I'm using Android Studio 3.0.1. The project compiles and runs but (using the emulator), but I just get a white screen for the MainActivity. Duplicated on Samsung Note 5 running Android 7. White Screen.
E/RecyclerView: No adapter attached; skipping layout
FIXED!
added:
recyclerView.setHasFixedSize(true);at the end of setupList method.