-1

可能重复:
我们可以从 android 应用程序在 Google plus 上发布吗?

根据stackoverflow上的这篇文章 我们可以从android应用程序在Google plus上发布吗?

google+ 的 API 是只读的,所以我无法发布,无论如何日期是指去年..有什么改变吗?

我需要一种在 google+ 的墙上共享链接的方法,您可以在网站上的“google+ 共享”按钮上找到相同的行为,但在我的应用程序上。

我不能依赖 webview,因为用户当前无法登录到 google+ 的帐户,并且我宁愿不启动 webbrowser 的意图:最好的选择肯定是使用 google+ api 来完成这项任务......

4

1 回答 1

2

试试这个。

Intent shareIntent = ShareCompat.IntentBuilder.from(ShareActivity.this)
   .setText("This site has lots of great information about Android!
      http://www.android.com")
   .setType("text/plain")
   .getIntent()
   .setPackage("com.google.android.apps.plus");

startActivity(shareIntent);

在这里查看更多详细信息。

于 2012-09-15T10:40:32.220 回答