gpt4 book ai didi

android - 在圆形 ImageView 中获取用户个人资料图片

转载 作者:行者123 更新时间:2023-11-30 02:01:56 26 4
gpt4 key购买 nike

我已经在我的应用程序中实现了 Facebook 登录,现在想要获取用户的个人资料图片,我已经这样做了,但现在我正在尝试使用这个库将它变成一个圆形格式 - https://github.com/vinc3m1/RoundedImageView

我在同时实现这两者时遇到了麻烦,我不确定最好的解决方法

这是java

final RoundedImageView profilePic = (RoundedImageView) rootView.findViewById(R.id.myProfilePic);
GraphRequestAsyncTask request = GraphRequest.newMeRequest(AccessToken.getCurrentAccessToken(), new GraphRequest.GraphJSONObjectCallback() {
@Override
public void onCompleted(JSONObject user, GraphResponse response) {
if (user != null) {
// set the profile picture using their Facebook ID
profilePic.setProfileId(user.optString("id"));
}
}
}).executeAsync();

这是xml

<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/myProfilePic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"

android:layout_gravity="center_horizontal"
android:padding="10dip"

android:scaleType="center"
app:riv_corner_radius="30dip"
app:riv_border_width="3dip"
app:riv_oval="false"
app:riv_border_color="@color/material_white"
/>

我遇到了错误

Cannot resolve method 'SetProfileId'

我认为错误是因为我没有在图形请求中返回正确的位图,但不确定如何解决这个问题。

最佳答案

查看RoundedImageView source 我没有看到任何名为 setprofileId() 的方法。您将需要向 Facebook Graph API 发出请求以获取个人资料图片的 URL,然后将其交给 View (如果它有这样的方法),或者自己下载并作为 Bitmap.

关于android - 在圆形 ImageView 中获取用户个人资料图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31328850/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com