Skip to content Skip to sidebar Skip to footer

Firebase Recycler View Don't Show Anything

Hello! At the beginning I must tell that I've shown many documentations about Firebase and spent a lot of time on existing topics on Stack. Let's begin. I'm creating app for car us

Solution 1:

You are using a new version of Firebaseui, then inside onStart() you need to add the following:

 firebaseRecyclerAdapter.startListening();

to start listening for data

and inside onStop(), add:

firebaseRecyclerAdapter.stopListening();

more info here:

Firebase ui lifecycle

Post a Comment for "Firebase Recycler View Don't Show Anything"