
How can I retrieve all data from these keys and display it in recycle view. Each key has a value that I want to display.

How can I retrieve all data from these keys and display it in recycle view. Each key has a value that I want to display.
Simply adding a ValueEventListener to correct child
database.child("user details").addValueEventListener(...
would do it. You might want to consider changing "user details" to one word, eg. "userDetails".