https://graph.facebook.com/photoAlbumId/photos
在我的 android 应用程序中,我想显示来自photoAlbumId
用户 fb 的所有照片。姓名。
我通常使用
ImageView user_picture;
userpicture=(ImageView)findViewById(R.id.userpicture);
URL img_value = null;
img_value = new URL("http://graph.facebook.com/"+id+"/picture?type=large");
Bitmap mIcon1 = BitmapFactory.decodeStream(img_value.openConnection().getInputStream());
userpicture.setImageBitmap(mIcon1);
例如,我如何获取所有图像 https://graph.facebook.com/zoo/photos
并在 android 活动中显示它们 ListView?
我想让它看起来像:这里