我需要将我的应用程序中的一些文本分享给 google plus,我用 google 搜索并发现许多链接说
要使用 ShareCompat,我找到了这个代码示例
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);
但我想知道从哪里下载这个 ShareCompat API。任何人都可以为此提供一个链接。任何形式的帮助将不胜感激。非常感谢,莫娜