How to add my Facebook and Twitter Profile Image in to my apps? How to crop that profile image to a particular size?
I am trying this facebook profile image from other problem
ImageView user_picture;
userpicture=(ImageView)findViewById(R.id.userpicture);
URL img_value = null;
img_value = new URL("http://graph.facebook.com/"+id+"/picture?type=large");
Bitmap mIcon1 = BitmapFactory.decodeStream(img_value.openConnection().getInputStream());
userpicture.setImageBitmap(mIcon1);
from:- Get user image from Facebook Graph-API
But How to find id of facebook profile user id of particular persons.