11
我使用official tutorial將Google加一個按鈕添加到我的某個Android應用程序中。但加上一個按鈕顯示錯誤的計數。我在代碼中所做的一切與本教程相同。我之前使用它從未得到這個愚蠢的錯誤。 現在我的應用程序已被推薦26次,所以加上一個按鈕應該顯示計數爲「26」,但它顯示「13」。Google Plus One按鈕在Android應用程序中顯示錯誤的計數(錯誤計數問題)
要包括在我的佈局我用加號按鈕:
<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" />
要分配按鈕成員變量i用於:
mPlusOneButton = (PlusOneButton) findViewById(R.id.plus_one_button);
如所建議的我使用初始化它在我的活動的onResume方法下面的代碼:
mPlusOneButton.initialize(APP_URL, PLUS_ONE_REQUEST_CODE);
這裏APP_URL是我的應用程序的谷歌播放網頁的網址, PLUS_ONE_REQUEST_CODE是我用它作爲0的活動請求代碼。
有什麼建議嗎?提前致謝。
在我的情況下,經過幾天后,它顯示出正確的g +計數本身。我沒有在我的代碼中進行任何更改,因爲我確信我的代碼根據文檔是正確的。爲什麼我得到那個令人討厭的延遲?我不知道,也許它與谷歌服務器和更新有關。
'我用它從未得到這個愚蠢的error' - >請張貼產生錯誤的結果代碼。如果它第一次工作,可能是你做錯了什麼,這會導致錯誤的結果。 – iRuth 2015-03-02 18:23:18
@iRuth發佈了我的代碼。 – AnEnthusiast 2015-03-02 18:47:28
佈局文件中的'PlusOneButton'沒有這行 - >'xmlns:plus =「http://schemas.android.com/apk/lib/com.google.android.gms.plus」'。你可以添加它,看看它是否有任何區別? – iRuth 2015-03-02 18:57:03