我有一个在我的应用中正常运行的sharedialog。我需要预填充标签,但以下代码不起作用。
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.setShareHashtag(new ShareHashtag.Builder()
.setHashtag("#ConnectTheWorld")
.build());
.build();
我收到此错误...
答案 0 :(得分:1)
删除
后的第一个分号.setShareHashtag(new ShareHashtag.Builder()
.setHashtag("#ConnectTheWorld")
.build())
使用以下代码
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.setShareHashtag(new ShareHashtag.Builder()
.setHashtag("#ConnectTheWorld")
.build())
.build();