Well, what I want to do is an activity where a Json is consumed. The problem is that all tutorials show only how to return a Json in a listview. What I want is a structure something like this:
Textview
; Imageview
; Textview
; This comes from a single Json, as in the example:
{
"item":[
{ "titulo":"Recomendação",
"imagem":"http://i.imgur.com/Bl0jBTc.png",
"texto":"Texto",
}
]
}
I currently use Picasso to upload images. What would be a good way to do it?