我使用以下代码从Facebook加载用户个人资料图片。
final String fbDpURL = "https://graph.facebook.com/" + fbId + "/picture?width=200&height=200";
Picasso.with(context).load(fbDpURL).placeholder(R.drawable.default_person).transform(new RoundedTransformation(100, 1)).into(holder.iv_fbPic);
其中fbId
是Facebook登录后获得的Facebook用户ID。在某些设备上,比如Moto G,我注意到图像没有加载。我已经在我的网址中使用了"https://"
,如同在类似问题的问题的各种答案中所提到的那样。但这并不能解决我的问题。