2

我需要通过 Android 应用在 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.
        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);
    } 
});

但如果我的手机上是官方客户端 Google+,它会起作用。我可以在不使用官方客户端的情况下在 Google+ 中共享链接吗?

4

2 回答 2

0

共享意图,显示在您提供的代码中。使用本机 Google+ 应用程序将内容共享到 Google+。这是在 Android 上将内容分享到 Google+ 的唯一方式。

于 2012-08-10T23:04:27.320 回答
0

Google+ API 不支持分享。链接:https ://developers.google.com/apis-explorer/#s/plus/v1/

于 2012-08-09T13:54:50.840 回答