How to fetch values by their keys from a child snapshot in firebase realtime database?
I want to fetch values related to a particular key from the data received in my snapshot. This is my code: dbref.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot snapshot) { for (DataSnapshot child : snapshot.getChildren()) { Log.d("output",child.getValue().toString()); } })…