我已经在我的代码中实现了谷歌加一个按钮用于推荐功能(比如Facebook中的“赞”)。但是当我运行我的代码时,它显示了一个稀释盒。 共享选项无法正常工作,因为它在墙上发布了一些空白文本。因此它没用。
我只希望推荐选项不需要共享。我的要求是: -
当我按下按钮时,它会添加推荐并按两次它将取消推荐。
in onCreate(): -
PlusOneButton mPlusOneButton = (PlusOneButton) v.findViewById(R.id.plus_one_button);
@Override
public void onResume() {
super.onResume();
mPlusOneButton.initialize(APPURL, 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="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_weight="20"
android:layout_marginTop="19dp"
plus:annotation="bubble"
plus:size="standard" />
有人可以帮我找到答案。