我需要在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+中分享链接。
答案 0 :(得分:0)
Google+ API不支持共享。链接:https://developers.google.com/apis-explorer/#s/plus/v1/
答案 1 :(得分:0)
分享意图,显示在您提供的代码中。使用原生Google+应用程序向Google+分享内容。这是在Android上与Google+分享内容的唯一方式。