gpt4 book ai didi

android - 将 Avatar Facebook 显示到 ImageView

转载 作者:搜寻专家 更新时间:2023-11-01 07:38:46 25 4
gpt4 key购买 nike

我使用如下代码将 facebook 头像显示到 ImageView

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ImageView img = (ImageView) findViewById(R.id.imgAvatar);
img.setImageBitmap(getBitmapFromURL("http://graph.facebook.com/"+"100002394015528"+"/picture"));
}
public static Bitmap getBitmapFromURL(String src) {
try {
URL url = new URL(src);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
Bitmap myBitmap = BitmapFactory.decodeStream(input);
return myBitmap;
} catch (IOException e) {
e.printStackTrace();
return null;
}
}`

但是不行。请帮助我。

最佳答案

http://graph.facebook.com/id/picture 不返回图像。它返回一些响应 header ,包括 302 重定向和位置 header 。

例如,您的示例重定向到:http://profile.ak.fbcdn.net/hprofile-ak-snc4/211619_100002394015528_568817_q.jpg

所以代替

InputStream input = connection.getInputStream();
Bitmap myBitmap = BitmapFactory.decodeStream(input);

您需要从请求中获取 header ,跟踪位置,然后执行之前的操作。我不知道 Android,也不知道那是什么语言。 (Java?)所以我对此无能为力,但我认为这些信息可能足以让您朝着正确的方向前进。

关于android - 将 Avatar Facebook 显示到 ImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6797964/

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