我已按此处https://developers.google.com/+/mobile/android/recommend实施了Google+一键式按钮。
但是,点击+1按钮不会增加计数器并共享一个空帖子。我不知道为什么会这样,我尝试了各种解决方案。
这是我实现按钮的代码:
private static final int PLUS_ONE_REQUEST_CODE = 0;
//In onCreate():
mPlusOneButton = (PlusOneButton) findViewById(R.id.plus_one_button);
@Override
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);
}
这是我的按钮XML:
<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="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
plus:size="standard"
plus:annotation="inline" />