Trying to figure out what is the issue with updating RecyclerView\'s Adapter.
RecyclerView
After I get a new List of products, I tried to:
Update t
I found out that a really simple way to reload the RecyclerView is to just call
recyclerView.removeAllViews();
This will first remove all content of the RecyclerView and then add it again with the updated values.