如何以编程方式在 Facebook 上与 android 分享照片
How to share photos on facebook with android programmatically
我按照 facebook 的教程进行操作,我想分享我的应用程序屏幕截图,所以我在 below.But 上使用了代码,但我也无法登录。
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(bm)
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
ShareDialog shareDialog1 = new ShareDialog(Oyun.this);
shareDialog1.show(content);
请访问这个人给出的答案,他分享照片并附上标题
How to share photo with CAPTION via Android share intent on Facebook?
你需要为它制作一个简单的意图到Facebook,你可以分享它。看完上面的答案,你会发现很简单。
我按照 facebook 的教程进行操作,我想分享我的应用程序屏幕截图,所以我在 below.But 上使用了代码,但我也无法登录。
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(bm)
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
ShareDialog shareDialog1 = new ShareDialog(Oyun.this);
shareDialog1.show(content);
请访问这个人给出的答案,他分享照片并附上标题
How to share photo with CAPTION via Android share intent on Facebook?
你需要为它制作一个简单的意图到Facebook,你可以分享它。看完上面的答案,你会发现很简单。