I have a List loaded with a JSON from a multi-column and multi-column query:
List<Videos> lstVideos = new ArrayList<Videos>();
So far so good. What I need is to load RecycleView
with this list.
In this RecycleView
you will have a layout configuration similar to this:
Imagem Titulo do Video
Descrição
Imagem Titulo do Video
Descrição
Imagem Titulo do Video
Descrição
How can I do this?
Can you give me some example code, tutorial, video, whatever it is that allows me to do something like that? Many thanks for all the help.