分享照片
Bitmap image = BitmapFactory.decodeStream(inputStream);
SharePhoto photo = (new com.facebook.share.model.SharePhoto.Builder()).setBitmap(image).build();
SharePhotoContent sharePhotoContent = (new com.facebook.share.model.SharePhotoContent.Builder()).addPhoto(photo).build();
shareDialog.show(sharePhotoContent);
分享帖子
ShareLinkContent linkContent = ((com.facebook.share.model.ShareLinkContent.Builder)(new com.facebook.share.model.ShareLinkContent.Builder()).setContentUrl(Uri.parse(bundle.getString("facebook_share_content_url")))).build();
shareDialog.show(linkContent);
网友评论