hello guys, am very new to android development, ans am trying to do my best to learn it,I have json output created from one of my PHP projects
here is my output
[
{
"id": "1",
"name": "BEiN HD 1",
"link": "http:\/\/www.mysite.com\/tv4.ogg",
"image": "http:\/\/www.mysite.com\/images\/jsc8.png"
},
{
"id": "2",
"name": "BEiN HD 2",
"link": "http:\/\/www.mysite.com\/tv4.ogg",
"image": "http:\/\/www.mysite.com\/images\/jsc2.png"
},
{
"id": "3",
"name": "Comedy",
"link": "http:\/\/www.mysite.com\/tv4.ogg",
"image": "http:\/\/www.mysite.com\/images\/comedy.png"
}
]
I want to read this file and create ImageButons dynamically for it src image will be the picture from JSON array.
any tutorials to achive this ?