I don\'t know why, but I am always getting null when I try to get the profile picture of the user. Do I need to set some specific permissions to get access?
Below is
Simply use Picasso. Add Picasso Library and then use this simple line code:
userpicture = (ImageView) row.findViewById(R.id.postuserid); Picasso.with(context) .load("https://graph.facebook.com/" + userID+ "/picture?type=large") .into(userpicture);