android - Aquery https images not getting loaded -


i have image requests coming internet on https link.

when set imageview using aquery, dont see images loading.

no image shown.

but image getting loaded, once u use http link.

please let me know, if has info.

thanks harisha

code snippet

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; } 


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -