简体   繁体   English

从Android分享到Google+

[英]Sharing to Google+ from Android

Does Google+ support sharing from an Android app yet? Google+是否支持从Android应用共享? I wanted to know because I have implemented this for twitter and facebook on my app and would like to do the same for Google+. 我想知道,因为我已经在我的应用程序中为twitter和facebook实现了此功能,并且希望对Google+也是如此。 I did read that they have an API now but it's only for development and testing and apps cannot be published. 我确实读过他们现在有一个API,但这仅用于开发和测试,并且无法发布应用。 Is this correct? 这个对吗?

For example, in your XML: 例如,在您的XML中:

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

In your Activity: 在您的活动中:

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);
    }
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM