如何删除谷歌加按钮消息?

时间:2014-07-31 00:27:27

标签: java android

我正在尝试在我的应用中添加goople plus 1按钮,当用户点击并推荐链接时,此消息显示“+1在Google上推荐此内容”。如何删除此消息并仅显示一个气球与链接的推荐数量?

<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="wrap_content"
android:layout_height="wrap_content"
plus:size="standard"
plus:annotation="inline" />

1 个答案:

答案 0 :(得分:1)

http://developer.android.com/reference/com/google/android/gms/plus/PlusOneButton.html#ANNOTATION_NONE说......

  

&#34;设置要在+1按钮旁边显示的注释。这也可以   使用属性加设置:annotation =&#34; none | bubble | inline&#34;。 &#34;

因此请尝试:

<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="wrap_content"
android:layout_height="wrap_content"
plus:size="standard"
plus:annotation="none" />