I am using GRAPH API to get posts of a facebook page. For posts which contains picture, the response contains the picture URL.
Response= {id:"...", message:"...",picture:"jpg image url"}
I am trying to load the image from the above URL resulted from GRAPH API.
And using below code to load image from URL. How to load an ImageView by URL in Android?
I see resulting bitmap is not null, but my imageview shows nothing(not even a default image I set in the XML).
Note: Image is a jpg format.