What I want to do is a database listview
With a small image button and text on the right side,
Then I want the small image to change with a URL given by
a text file but I am stuck and the 2-hour rule is up
For(file length)
So URL is http://www.site.com/images/(i++).png
What you want to do is definitely possible, however, you will need to manually fetch the image and set it on the ImageButton.
Here is a little method you can use to fetch an image:
Of course, you will want to wrap this method in a thread (Using AsyncTask with SDK 1.5 or UserTask in SDK pre 1.5), then simply call:
I think this has answered your question, if not please elaborate further.