【发布时间】:2013-08-16 16:57:41
【问题描述】:
我使用以下代码在 google plus 上在 android 应用中分享帖子。但是它没有显示sn-p的描述。它显示了除了描述之外的所有内容。这有什么原因吗?
Intent shareIntent = new PlusShare.Builder(this)
.setText("Test")
.setType("text/plain")
.setContentDeepLinkId(
"Example", /** Deep-link identifier */
"Snippet", /** Snippet title */
// ------------ Below Desciption is not visible in post --------------
"Good Example", /** Snippet description */
Uri.parse("https://www.example.com/snippet.png"))
.getIntent();
startActivityForResult(shareIntent, POST_ON_GOOGLE_PLUS);
我们将不胜感激。
【问题讨论】:
标签: android share google-plus posting field-description