我想将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上分享信息?
注意:从我的应用程序中分享信息非常有效。
答案 0 :(得分:2)
我找到了另一种方法。 通过以下方式。
hello