1

我正在我的 android 应用程序中集成 Google +1 api 以进行 +1 推荐和共享。当我使用 android 手机共享我的应用程序时,安装按钮不会显示在 google+ 帐户中。用户可以在哪里直接下载。但是当我使用网络浏览器共享时它显示安装按钮。

请建议我在用户共享我的应用程序时如何显示直接安装按钮。

4

1 回答 1

0

借助适用于 Android 的 Google+ 平台,您现在可以在自己的 Android 应用程序中集成原生 +1 按钮。

1)您首先需要在 Activity 中初始化 PlusClient 对象的+1 按钮。

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 并设置您的安装按钮可见性-->可见

希望它可以帮助!

于 2013-01-02T07:12:04.237 回答