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
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:
Post a Comment for "Firebase Recycler View Don't Show Anything"