0
I have a List loaded with a JSON of a query with multiple records and multiple columns:
List<Videos> lstVideos = new ArrayList<Videos>();
So far so good. What I need is to carry one RecycleView
with that list.
In that RecycleView
will have a configuration of layout 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 that ?
Can you give me an example of code, tutorial, video, whatever allows me to do something like that? Thank you so much for all your help.
Documentation of Android
– ramaral