如何通过Android应用程序在不使用意图的情况下在google Plus中共享图像+文本?

时间:2013-06-04 11:01:56

标签: android google-plus

您好我想在google plus中与图片共享图片但是现在我找不到示例和详细信息来源,所以请帮助我...谢谢

File tmpFile = new File("/path/to/image");
final String photoUri = MediaStore.Images.Media.insertImage(
     getContentResolver(), tmpFile.getAbsolutePath(), null, null);

Intent shareIntent = ShareCompat.IntentBuilder.from(this)
     .setText("Hello from Google+!")
     .setType("image/jpeg")
     .setStream(Uri.parse(photoUri))
     .getIntent()
     .setPackage("com.google.android.apps.plus");

我有这个代码但是我不能使用因为我想使用像facebook和twitter等sdk分享图像+文本。

1 个答案:

答案 0 :(得分:0)

我们在Android中拥有适用于Google+的图书馆,例如facebook&推特。链接https://developers.google.com/+/mobile/android/getting-started

中给出的详细信息

此外,您可以查看具有同类问题的link