How to set image to imageview from https url android? -
i want set image in imageview,my image coming https url.here using picaso loadiing image,but not able image https url.if change https http able image,but want image https url .please solve problem @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_picaso_image); imageview img=(imageview)findviewbyid(r.id.imageview1); string url="https://www.bahrainlocator.gov.bh/blm_data/point_1418646022.jpg"; picasso.with(this).load(url).into(img); } edit: please try use activity.this context,if using fragments use getactivity() download picasso library http://square.github.io/picasso/ then try using method picasso.with(context) .load(url) .placeholder(r.drawable.user_placeholder) .error(r.drawable.user_placeholder_error) .into(imageview); and have issues high resolution images , https protocols if still cant load picasso try glide library stri...