Facebook ProfilePictureView显示圆形图像

时间:2015-10-17 05:22:53

标签: android facebook

我正在使用新的Facebook SDK 4.0,我想在我的应用中显示用户个人资料图片。 为此,我使用facebook提供的ProfilePictureView。

在我的xml中我使用下面的代码 -

<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" />

我的活动中的代码是 -

 ProfilePictureView profilePicture = (ProfilePictureView) view.findViewById(R.id.profilePicture);
 profilePicture.setProfileId(userID);

我没有采用任何方式以循环方式显示图像。

提前致谢。

2 个答案:

答案 0 :(得分:2)

我确定您需要修改{{1}}课程。

请在下面查看 SO LINK 。我希望它能为您提供帮助。

  1. Display FB profile pic in circular image view in Application

答案 1 :(得分:1)

如果要以循环方式显示图像,则可以在项目中使用Picasso库,您可以在其中传递您需要显示的显示图像的URL,该URL可以从Facebook图形API中检索。