我正在使用facebook sdk分享照片,但标题没有显示..有没有办法显示标题?
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(photobitmap)
.setCaption("Photo made by")
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
ShareApi.share(content, null);
shareDialog.show(content);