I want to get an image from a server (HTTPS) and show it in an ImageView.
Images are from Facebook Events (example: https://fbcdn-photos-f-a.akamaihd.net/hphotos-ak-prn1/c17.0.50.50/1016204_538791999501573_1791760778_t.jpg )
Drawable.createFromStream((InputStream)new URL("https://fbcdn-photos-f-a.akamaihd.net/hphotos-ak-prn1/c17.0.50.50/1016204_538791999501573_1791760778_t.jpg").getContent(), "src");
throws NullPointer Exception
Or maybe is there any way to get the image via Facebook SDK? In Facebook SDK I only know the ProfilePictureView (which may only be for profile pictures???)
Thanks so far!