2014-11-04 65 views
0

當我在Google上共享文本時,廣告也隨文本本身發佈。如何停止張貼廣告共享text.I使用下面的代碼。Google plus在我的Android應用程序中共享發佈廣告

Intent shareIntent = new PlusShare.Builder(this) 
    .setType("text/plain") 
    .setText(shareText) 
    .setContentUrl(Uri.parse("https://developers.google.com/+/")) 
    .getIntent(); 
startActivityForResult(shareIntent, 0); 
+0

你能詳細說說,你期望什麼,實際產出是多少? – Leandros 2014-11-04 09:21:30

+0

當然,我的代碼工作正常,文本已成功共享,但該文本也顯示Google plus平臺的廣告。我不希望廣告與文本一起出現。 – user3647834 2014-11-04 09:30:22

+1

內容由['setContentUrl'](http://developer.android.com/reference/com/google/android/gms/plus/PlusShare.Builder.html#setContentUrl(android.net.Uri))填充。刪除該部分。 – Leandros 2014-11-04 09:31:24

回答

相關問題