0

我需要将我的应用程序中的一些文本分享给 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。任何人都可以为此提供一个链接。任何形式的帮助将不胜感激。非常感谢,莫娜

4

2 回答 2

4

ShareCompat是 Android 支持包的一部分,可在您的 SDK 管理器的 Extras 中获得。

ShareCompat可以在Android 开发者网站上找到有关使用的文档。

于 2012-06-22T18:15:11.717 回答
0

您可以通过使用提取所有其他 SDK 包/更新的 android SDK 应用程序来获取它。

这是描述它是什么以及如何获取它的官方链接:http: //developer.android.com/tools/extras/support-library.html

于 2012-06-22T18:18:55.813 回答