Facebook shareDialog未使用SharePhotoContent设置主题标签

时间:2017-07-08 21:19:52

标签: android facebook share

我有一个在我的应用中正常运行的sharedialog。我需要预填充标签,但以下代码不起作用。

SharePhotoContent content = new SharePhotoContent.Builder()
                .addPhoto(photo)
                .setShareHashtag(new ShareHashtag.Builder()
                        .setHashtag("#ConnectTheWorld")
                        .build());
                .build();

我收到此错误...

enter image description here

1 个答案:

答案 0 :(得分:1)

删除

后的第一个分号
.setShareHashtag(new ShareHashtag.Builder()
                            .setHashtag("#ConnectTheWorld")
                            .build())

使用以下代码

    SharePhotoContent content = new SharePhotoContent.Builder()
                    .addPhoto(photo)
                    .setShareHashtag(new ShareHashtag.Builder()
                            .setHashtag("#ConnectTheWorld")
                            .build())
                    .build();