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
you have 2 options to do this: refresh UI from the adapter:
mAdapter.notifyDataSetChanged();
or refresh it from recyclerView itself:
recyclerView.invalidate();