1

Google+ 是否支持从 Android 应用共享?我想知道,因为我已经在我的应用程序上为 twitter 和 facebook 实现了这个,并且想为 Google+ 做同样的事情。我确实读到他们现在有一个 API,但它仅用于开发和测试,并且无法发布应用程序。它是否正确?

4

2 回答 2

5

例如,在您的 XML 中:

<Button
  android:id="@+id/share_button"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="Share on Google+" />

在您的活动中:

Button shareButton = (Button) findViewById(R.id.share_button);
shareButton.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
      // Launch the Google+ share dialog with attribution to your app.
      Intent shareIntent = ShareCompat.IntentBuilder.from(ExampleActivity.this)
          .setType("text/plain")
          .setText("Welcome to the Google+ platform. https://developers.google.com/+")
          .getIntent()
          .setPackage("com.google.android.apps.plus");

      startActivity(shareIntent);
    }
});
于 2012-10-01T14:46:04.667 回答
0

看看Julia Ferraiol iGoogle Plus 开发者博客上的这篇文章:

将丰富的内容从您的 Android 应用程序共享到 Google+ 等

于 2012-10-01T14:43:18.343 回答