I'm loading Facebook images in my Android app, and it worked perfectly until this morning when I started getting:
SkImageDecoder::Factory returned null
indicating that the image was not available. I checked it with an image from another url, and the code still works, so I figured Facebook must be having some trouble⦠does anyone know about this?
Here's the code I use:
URL img_value = null;
img_value = new URL("http://graph.facebook.com/" + userId + "/picture?type=" + type);
retval = BitmapFactory.decodeStream(new BufferedInputStream(img_value.openConnection().getInputStream()));