You can create a collection of user documents using firebase's authentication to obtain either their user id created from authentication or their email. For the bird counter you probably did not have authentication, but for other projects, you probably will want to use firebase's authentication. If you are using firestore (I do not know if this is true in firebase's realtime database) you can create a reference to another collection in a document that could be referenced using:
firestore.collection("users").doc([user id or email]).collection([name of collection])
This would give you the reference to user's documents and allows for generalization of getting any logged in user's documents that need to get used. I do not know if this is the exact same syntax for android studio, but it worked for me in React.
Here is a link that may tell you how to do it in your project
https://firebase.google.com/docs/firestore/query-data/get-data