我需要通过 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+ 中共享链接吗?