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 に答える