Here is the FB Graph url - https://graph.facebook.com/198403540272980/photos/?fields=name,source&limit=0
            String jsonUser = fb.request("198403540272980/photos/?fields=name,source&limit=0");
            obj = Util.parseJson(jsonUser);
            JSONArray dataArr = obj.getJSONArray("data");  
            for(int i = 0; i< dataArr.length()-1; i++)
            {
                **Need code to load image to imageview**
            }
Any help???
 
     
    