Picasso Images Will Not Load - Android / Java -
i'm attempting use picasso load imageview url - imageview never seems populate image , unsure why.
p.s.
when debugging - value of 'boxart' valid image url each , every time - 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 errors - not load image.
try installing error handler , see if gets called (you set global listener on picasso.builder:
public class myclass implements picasso.listener { @override public void onimageloadfailed(picasso picasso, uri uri, exception exception) { // display exception } } full answer: https://stackoverflow.com/a/27798536/1715829
Comments
Post a Comment