I'm attempting to use Picasso to load an ImageView from a URL - however the imageView never seems to populate with the image and I am unsure why.
P.S.
When debugging - the value of 'boxart' is a valid image URL each and every time - so I'm pretty stumped.
Source:
...
Bundle extras = getIntent().getExtras();
if (extras != null) {
String boxart = extras.getString("boxart");
Picasso.with(this).load(boxart).into(imageItem);
...
Also - I'm not getting any errors - it simply does not load the image.