Trying to display users information in a recyclerview - Firebase
问题 My app is using Firebase. The user can register and login. In the main activity, there is a menu option called All Users . All I want for now is to display the registered users in a recyclerview. Of course this means that I will have to query the database using mUsersDatabase = FirebaseDatabase.getInstance().getReference().child("Users"); If I put a breakpoint in this line, I can read the users. That's no problem. Next, I use this page to implement the FirebaseRecyclerAdapter The full code is