I have been working for a while now with cardview
and recyclerview
but I still have doubts about a real situation. In all the examples that I have gone through people uses a simple array as a source of pictures and text that they already have in drawable
folder to fill up the cards, so the data is like pre-defined.
But how does it work in a real situation where your data (like a products catalog) is in a web service and it can be like millions of products?
Maybe you go for the solution of sending a Volley request and load a "chunck" of items (pics and text) each time?.