How to append listview items from the Internet

I’m still struggling to find an answer to my question. I want to download 3 strings for each item in the listview to the phone. I know how to get all the data from the server, just not how to append the data to the litview, I’m really annoyed and this problem it’s dragging me down.

TL;DR How can I create a listview that appends data from a HttpGet?

Thanks!

P.S Great Blog! I’m thinking of creating a similar style one too.

Use a array list with a hashmap for records.
Then use a listadapter (you could extend the simpleadapter) with your listview.

As Martin said, ArrayList and a simple adapter would what you need. You might find some help here and here.

Thanks, I’ll take a look.