1

+1の推奨事項と共有のために、AndroidアプリケーションにGoogle +1 APIを統合しています.Androidフォンのインストールボタンを使用してアプリケーションを共有すると、Google+アカウントに表示されません.ユーザーが直接ダウンロードできる場所.ただし、Webブラウザーを使用して共有すると表示されますインストールボタン。

ユーザーがアプリケーションを共有するときに直接インストール ボタンを表示する方法を教えてください。

4

1 に答える 1

0

Android 用の Google+ プラットフォームを使用すると、ネイティブの +1 ボタンを Android アプリに統合できるようになりました。

1) まず、アクティビティで+1 ボタンの PlusClient オブジェクトを初期化する必要があります。

2) レイアウトに PlusOneButton を含めます。

<com.google.android.gms.plus.PlusOneButton
    xmlns:plus="http://schemas.android.com/apk/lib/com.google.android.gms.plus"
    android:id="@+id/plus_one_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    plus:size="standard"
    plus:annotation="inline" />

3) PlusOneButton を Activity.onCreate ハンドラーのメンバー変数に割り当てます。

    @Override
    protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     mPlusClient = new PlusClient(this, this, this, Scopes.PLUS_PROFILE);
     mPlusOneButton = (PlusOneButton) findViewById(R.id.plus_one_button);
    }

4) Activity.onResume ハンドラーでアクティビティがフォーカスを受け取るたびに、PlusOneButton の状態を更新します。

 protected void onResume() {
   super.onResume();
  // Refresh the state of the +1 button each time the activity receives focus.
   mPlusOneButton.initialize(mPlusClient, URL);
  }

詳細については、次を参照してください。

https://developers.google.com/+/mobile/android/#recommend_content_with_the_1_button

Google+ ボタンで clickEvent を取得したら、可視性を設定します--->GONE を設定し、インストール ボタンの可視性を設定します-->VISIBLE

それが役立つことを願っています!!

于 2013-01-02T07:12:04.237 に答える