Google+Android共有統合
1092 ワード
Google+共有
準備作業
Google開発者コンソールプロジェクトを作成し、GoogleApiClientオブジェクトを初期化する必要があります.
Google+のAndroidアプリケーションへの統合を開始
ステップ1:Googleの登録を追加
Googleが登録したAndroidアプリケーションの統合を開始
1、共有ボタンをレイアウトに追加します.
次に、深層リンクやインタラクティブな投稿など、このコードに先進的な機能を追加することができます.
準備作業
Google開発者コンソールプロジェクトを作成し、GoogleApiClientオブジェクトを初期化する必要があります.
Google+のAndroidアプリケーションへの統合を開始
ステップ1:Googleの登録を追加
Googleが登録したAndroidアプリケーションの統合を開始
1、共有ボタンをレイアウトに追加します.
2、在你的活动中,配置按钮的OnClickListener点击时分享。
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 = new PlusShare.Builder(this)
.setType("text/plain") //
.setText("Welcome to the Google+ platform.") //
.setContentUrl(Uri.parse("https://developers.google.com/+/")) //
.getIntent();
startActivityForResult(shareIntent, 0);
}
});
次に、深層リンクやインタラクティブな投稿など、このコードに先進的な機能を追加することができます.