如何展示新的Google加上一个新的设计

时间:2015-11-19 20:05:41

标签: android google-plus google-play-services google-plus-one

我正在使用Google plus api在我的应用上显示+1按钮。我正在构建最新版本的Google Play服务(8.3)并在Nexus 9上进行测试(更新为marshmallow和8.3.01 Google Play服务)

但它仍然显示了+1按钮的旧设计。Old google plus button

如何显示新设计。 enter image description here

我在布局文件中使用的代码:

<com.google.android.gms.plus.PlusOneButton android:id="@+id/plus_one_button"
            xmlns:plus="http://schemas.android.com/apk/lib/com.google.android.gms.plus"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:focusable="true"
            android:minHeight="24dp"
            plus:annotation="inline"
            plus:size="medium" />

1 个答案:

答案 0 :(得分:0)

您是否可以检查自己的活动以确保以这种方式对其进行初始化:

 private static final int PLUS_ONE_REQUEST_CODE = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mPlusClient = new PlusClient(this, this, this);
    mPlusOneButton = (PlusOneButton) findViewById(R.id.plus_one_button);
}

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

其中: - 网址是Google页面的地址+ 1&#39; d

  • PLUS_ONE_REQUEST_CODE是打开+1活动时使用的请求代码。该值必须是无符号的16位整数。

另外,我假设您在到达此之前已经完成了所有这些https://developers.google.com/+/mobile/android/getting-started因为您看到了所需的结果。