如何从SD卡上传图像到Facebook?

时间:2015-12-17 10:31:17

标签: android facebook

在这里我放置了我的代码,任何人都可以告诉我出了什么问题?

CODE

$scope.current

1 个答案:

答案 0 :(得分:1)

你想分享图片吗 - 它需要使用SharePhoto照片

SharePhoto photo = new SharePhoto.Builder()
        .setBitmap(bitmap)
        .build();
SharePhotoContent content = new SharePhotoContent.Builder()
        .addPhoto(photo)
        .build();

所以你可以得到一个位图文件

Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath()