skip to Main Content

Show facebook profile pic using url in listView – Android – Facebook api

i'm trying to show facebook user's profile pic using facebook graph api url and user's name. String Name = jsonObjectlike.getString("name"); String UserIds = jsonObjectlike.getString("id"); URL url = new URL("https://graph.facebook.com/" + listid + "/picture?type=small"); Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream()); HashMap<String, String> contact…

VIEW QUESTION
Back To Top
Search