2015-04-25 125 views
1

我已經實施了Google+一鍵,如此處所述https://developers.google.com/+/mobile/android/recommendAndroid Google +1按鈕問題

但是,單擊+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" /> 
+0

也有同樣的問題。在日誌中發現:錯誤E/PlusOneActivity:意圖缺少必需的參數。但沒有任何想法如何解決它。檢查從應用程序發送的意圖,因此所有信息都包含在帳戶之外。 –

+0

不幸的是,這似乎是最新版Play服務的一個已知問題 - https://code.google.com/p/google-plus-platform/issues/detail?id=1127&sort=-id&colspec=ID%20Type%20Status%20Component %20Owner%20Summary%20Stars – dnlbaines

回答

0

原因這個問題是

android:launchMode="singleInstance" 
在清單

爲當前活動。

請你分享一下你的代碼,也許我可以幫忙。

在我來說,我更改代碼

android:launchMode="singleTask" 

問候