I need to display a list of options in my listview (or suitable alternative), retrieved from a json feed. I have this working. I have also been able to process image urls to a drawable, from the json using dhuckabys prime image loader (https://github.com/DHuckaby/Prime).
I can display a list of text by making a string array and passing it into the adapter, I just can't figure out a way to display my drawables in the list. All examples I've found show how to use icons from the drawables folder.
Ideally, I want to interate through my json, process the image urls and add the drawable and the title so that it can be shown in a list.
I've tried making custom list adapters without success.
Any help or links to relavant tutorials would be helpful. I can only find tutorials that use local drawables.
Thanks.