1

我正在開發一個android應用程序。它已經使用谷歌Play遊戲服務SDK C++ (Google Games C++ SDK Documentation)實現了leaderboadrs。這已經處理了授權。如何在使用Google Play遊戲服務SDK for C++實現排行榜時創建Google+ Plus One按鈕?

現在我想添加屬於Google Play服務的一部分的Google+平臺的加號按鈕。問題是沒有C++ SDK(Google+ Platform Documentation)。我可以使用Android API來完成它,但是如何處理已經使用C++ SDK編寫的排行榜?

是否有任何方式可以同時使用Google Play服務SDK for Android的Google Play遊戲服務C++ SDK和Plus One按鈕使用排行榜?這兩種API都有其登錄Google Play服務的授權方法。或者這是否意味着我唯一的解決方案是使用Android API而不是C++來重寫排行榜?

回答

0

至少,您應該能夠通過打開https://plus.google.com/share?url=<url>的URL來使用基於Web的共享對話框。您還應該能夠trigger the share intent from Java code,例如:

Intent shareIntent = new PlusShare.Builder(this) 
     .setType("text/plain") 
     .setText("Welcome to the Google+ platform.") 
     .setContentUrl(Uri.parse("https://developers.google.com/+/")) 
     .getIntent(); 

    startActivityForResult(shareIntent, 0); 
相關問題