Aquery https图片未加载

时间:2014-03-10 09:12:17

标签: android

我通过https链接来自互联网的图像请求。

当我使用Aquery设置Imageview时,我看不到图像加载。

没有显示图像。

但是一旦你使用http链接,图像就会被加载。

如果有人有信息,请告诉我。

由于 Harisha

代码段

public View getView(int position, View convertView, ViewGroup parent) {

    if (convertView == null) {

        ImageView imageView = new ImageView(mContext);
        imageView.setLayoutParams(new Gallery.LayoutParams(width,height));

        AQuery aq = new AQuery(mContext);
        ApplicationProperty prop = new ApplicationProperty(mContext);
        aq.progress(-1).id(imageView).image(prop.getIpAddress()+"/"+rowItems.get(position).getImageURL(), true, true, 0, 0, null, AQuery.FADE_IN, AQuery.RATIO_PRESERVE);
        convertView = imageView;
    }
    return convertView;
}

0 个答案:

没有答案