Unity Android Facebook Share

2022-07-25  本文已影响0人  CERI_CHANNEL

分享照片

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);
上一篇下一篇

猜你喜欢

热点阅读