I'm trying to download an image, and create an ImageView dynamically and add it to my layout, but it won't display the image. Here is my code:

ImageView image = new ImageView(this);
LinearLayout.LayoutParams vp = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
image.setLayoutParams(vp);
image.setScaleType(ImageView.ScaleType.CENTER_CROP);
image.setMaxHeight(50);
image.setMaxWidth(50);
image.setImageDrawable(avatar);
theLayout.addView(image);

maybe I need to refresh the layout after I add the ImageView? How do you "refresh"?

link|improve this question

74% accept rate
Please try the dynamically image creation and adding with a non downloaded image (try to use a drawable from your drawable folder). If that works, we know the issue is with the downloading, otherwise its really a layout issue – WarrenFaith Apr 15 '11 at 12:18
try image.invalidate(); – Harshad Apr 15 '11 at 12:20
1  
if its an image he downloaded, wouldn't he want to use setImageURI() or setImageBitmap()? Isn't setImageDrawable for items in the drawable folders only? – willtate Apr 15 '11 at 12:33
Are you adding multiple images? What is avatar? – Mike dg Apr 15 '11 at 12:43
@WarrenFaith there is not problem with downloading. – Alex1987 Apr 15 '11 at 12:57
show 5 more comments
feedback

3 Answers

up vote 1 down vote accepted

hey.. try follwing code u will not need to refresh... nd put ur image url into inputurl variable

InputStream is = null;
String inputurl = " Enter url of ur image ";
try {
        URL url = new URL(inputurl);
        Object content = url.getContent();
        is = (InputStream) content;
        avatar = Drawable.createFromStream(is,"src");
} catch (MalformedURLException e) {
        e.printStackTrace();
} catch (IOException e) {
        e.printStackTrace();
}

ImageView image = new ImageView(this);
LinearLayout.LayoutParams vp = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
image.setLayoutParams(vp);
image.setScaleType(ImageView.ScaleType.CENTER_CROP);
image.setMaxHeight(50);
image.setMaxWidth(50);
image.setImageDrawable(avatar);
theLayout.addView(image);
link|improve this answer
feedback

You can use another thread to download the image, and after download finishes you can update the drawable by using a handler. You can see how to make another thread at the documentation. It does not seems easy but it would be better to learn how to do it, if you want to build more responsive android apps.

(title) Example ProgressDialog with a second thread http://developer.android.com/guide/topics/ui/dialogs.html

link|improve this answer
feedback

I think u have to deifne the parameters for the vp

if u will define parameters it will display the image like-

LinearLayout.LayoutParams Params=new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);
        Params.setMargins(0,0,0,0);

        Params=new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.