I have made a program in which i am fetching name, DOB of my all FB friends, and here i am also trying to fetch images of my friends, but i am not getting image, please where i am missing:
MyAdapter.java:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
v = inflater.inflate(R.layout.contact_tab, parent, false);
}
if (position >= myFriends.size()) {
return v;
}
MyFriend friend = myFriends.get(position);
ImageView icon_pic = (ImageView) v.findViewById(R.id.icon_pic);
try {
URL url = new URL(friend.getPic());
InputStream is = (InputStream) url.getContent();
Drawable image = Drawable.createFromStream(is, "fb");
icon_pic.setImageDrawable(image);
} catch (Exception e) {
Log.v(TAG, "myadapter: " + e.getMessage());
}