So I\'m struggling with this issue for about three hours now. I have this user class
public class User { private String user_id; private String userNa
You need to iterate over dataSnapshot.getChildren(...for example
dataSnapshot.getChildren(
for (DataSnapshot childSnapshot: dataSnapshot.getChildren()) { User user = childSnapshot.getValue(User.class); }