我使用official tutorial将google加一个按钮添加到我的某个Android应用中。但加一个按钮显示错误计数。我在代码中所做的一切都与教程相同。我在使用它之前从未遇到过这个愚蠢的错误。 现在我的应用程序已被推荐26次,所以加上一个按钮显示计数为" 26"但它显示了" 13"。
要在我使用的布局中包含加号按钮:
<com.google.android.gms.plus.PlusOneButton
android:id="@+id/plus_one_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/drawer_list_item_padding_left"
plus:annotation="inline"
plus:size="standard"
android:layout_marginBottom="@dimen/drawer_textview_paddingtopbottom"
android:layout_marginTop="@dimen/drawer_textview_paddingtopbottom" />
将按钮分配给我使用的成员变量:
mPlusOneButton = (PlusOneButton) findViewById(R.id.plus_one_button);
正如建议我使用以下代码在我的活动的onResume方法中初始化它:
mPlusOneButton.initialize(APP_URL, PLUS_ONE_REQUEST_CODE);
此处APP_URL是我应用的Google Play页面网址,PLUS_ONE_REQUEST_CODE是我用它作为0的活动请求代码。
有什么建议吗?提前谢谢。
在我的情况下,几天后它显示正确的g +计数本身。我没有对我的代码进行任何更改,因为我确信我的代码根据文档是正确的。为什么我会遇到令人讨厌的延迟?我不知道,也许它与谷歌服务器和更新有关。
答案 0 :(得分:2)
我最好的猜测是:
干杯