这是我的代码,我试图在ImageView中显示URL图像,但它不起作用,
mycode的:
CustomDialog alert = new CustomDialog(this, R.style.myCoolDialog);
alert.setContentView(R.layout.item_details);
ImageLoader imageLoader=new ImageLoader(this);
ImageView image1=(ImageView)alert.findViewById(R.id.details_image1);
ImageView image2=(ImageView)alert.findViewById(R.id.details_image2);
ImageView image3=(ImageView)alert.findViewById(R.id.details_image3);
image1.setTag(listFilltered.get(position).getAttr4());
image2.setTag(listFilltered.get(position).getAttr12());
image3.setTag(listFilltered.get(position).getAttr3());
imageLoader.DisplayImage(listFilltered.get(position).getAttr4(), image1);
imageLoader.DisplayImage(listFilltered.get(position).getAttr12(), image2);
imageLoader.DisplayImage(listFilltered.get(position).getAttr3(), image3);
alert.show();
在customDialog中:
public class CustomDialog extends Dialog {
public CustomDialog(Context context, int theme) {
super(context, theme);
}
}
我做得很好。它叫做图像加载器,我得到了URL。
下载很好。但图像不显示。