Although there are many tutorials out there, I\'ve found it really difficult to implement an AsyncTask to load images from URI\'s (obtained from a content provider) into a c
You need to pass your AsyncTask the view so that it can update it when it completes:
//Run ImageLoader AsyncTask here, and let it set the ImageView when it is done.
new ImageLoader().execute(view, uri);
And modify AsyncTask so that it can handle mixed parameter types:
public class ImageLoader extends AsyncTask
I haven't tested this code but it should give you an idea.