I\'m having a problem with making a RecycleView
in a fragment with data from Firebase. I expect the app to show the RecycleView
after I clicked on
The problem in your code is the use of the following line of code:
recyclerView.setHasFixedSize(true);
And this is because when using the latest version of Firebase-UI
library, there is no need to set the size of the RecyclerView
as fixed. The solution for solving this problem is to simply remove/comment the above line of code. That's it!