Google+はAndroidアプリからの共有をまだサポートしていますか?私は自分のアプリでTwitterとFacebookにこれを実装していて、Google+でも同じことをしたいので知りたいと思いました。現在APIがあることを読みましたが、これは開発とテスト専用であり、アプリを公開することはできません。これは正しいです?
質問する
1165 次
2 に答える
5
Google+ Android API は、https ://developers.google.com/+/mobile/android/ にあります。
Google+ で共有するためのコード スニペットは、そのページの少し下にありますhttps://developers.google.com/+/mobile/android/#share_on_google :
たとえば、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
于 2012-10-01T14:43:18.343 に答える