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+でリンクを共有できますか?