I am using the new Facebook SDK 4.0 and I want to show the user profile image in my application. For this I use ProfilePictureView provided by facebook.
In my xml, I use below code -
<com.facebook.widget.ProfilePictureView
android:id="@+id/user_profile_pic"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:gravity="center_horizontal"
facebook:preset_size="small" />
and the code inside my activity is
ProfilePictureView profilePicture = (ProfilePictureView) view.findViewById(R.id.profilePicture);
profilePicture.setProfileId(userID);
I did not manage how to move the image in a circle.
Thanks in advance.
source
share