I have created an Android chat application which incorporates Firebase and created a fragment with a current users messages. The error occurs when a user sends a message to more
As I can see in your code, you are using an older version of the Firebase-UI
library, in which because of a bug, you explicitly don't need to use fixed size. In order to display the data in your RecyclerView
, please remove/comment the following line of code:
convList.setHasFixedSize(true);
Please see here more informations.