1

Google+はAndroidアプリからの共有をまだサポートしていますか?私は自分のアプリでTwitterとFacebookにこれを実装していて、Google+でも同じことをしたいので知りたいと思いました。現在APIがあることを読みましたが、これは開発とテスト専用であり、アプリを公開することはできません。これは正しいです?

4

2 に答える 2

5

たとえば、XML では次のようになります。

<Button
  android:id="@+id/share_button"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="Share on 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 to your app.
      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);
    }
});
于 2012-10-01T14:46:04.667 に答える
0

Julia Ferraiol iによるGoogle Plus デベロッパー ブログの次の投稿をご覧ください。

Android アプリのリッチ コンテンツを Google+ などに共有する

于 2012-10-01T14:43:18.343 に答える