不推荐使用PlusShare类。还有其他选择可以通过Android应用在Google Plus上共享吗?

时间:2018-09-14 11:11:27

标签: android google-plus

我想将Google plus集成到我的android应用中,然后将我的应用中的信息分享到Google Plus。为此,我遵循它的documentation。在该文档中,给出了以下代码以在google plus上共享:

Intent shareIntent = new PlusShare.Builder(this)
      .setType("text/plain")
      .setText("Welcome to the Google+ platform.")
      .setContentUrl(Uri.parse("https://developers.google.com/+/"))
      .getIntent();

  startActivityForResult(shareIntent, 0);

但是,问题是PlusShare类已过时。因此,我的问题是,是否还有其他方法或其他方法可以在Google Plus上分享信息?

  

注意:从我的应用程序中分享信息非常有效。

1 个答案:

答案 0 :(得分:2)

我找到了另一种方法。 通过以下方式。

hello