i am using facebook SDK 3.0 i have to get profile picture of user login. Here is the code I use:
URL image_value = new URL(\"http://graph.facebook.com/\"+id
You can do something like this inside a thread:
String url = "http://graph.facebook.com/"+id+"/picture";
HttpConnection conn = new HttpConnection(url);
conn.openConnection();
Drawable d = Drawable.createFromStream(new BufferedInputStream(conn.getInputStream()), "image");
conn.close();
I hope it help you.