我正在使用Google plus api在我的应用上显示+1按钮。我正在构建最新版本的Google Play服务(8.3)并在Nexus 9上进行测试(更新为marshmallow和8.3.01 Google Play服务)
我在布局文件中使用的代码:
<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" />
答案 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
另外,我假设您在到达此之前已经完成了所有这些https://developers.google.com/+/mobile/android/getting-started因为您看到了所需的结果。