- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试将 PlusOneButton 添加到我的 Android 应用程序中。我按照 google ( https://developers.google.com/+/mobile/android/getting-started?hl=en ) 的描述,使用 debug.keystore 中的 SHA-1 在 google 云控制台上创建了应用程序。
在我的 XML 布局中,我添加了 +1 按钮:
<com.google.android.gms.plus.PlusOneButton
android:id="@+id/btnPlusOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
plus:size="standard" />
在我的 Activity 中,我覆盖了 onResume() 方法。当然,我首先通过 findViewById(...) 检索对象:
public void onResume() {
super.onResume();
btnPlusOne.initialize("http://www.google.de", REQUEST_CODE_PLUS_ONE);
}
我也在Manifest中给了权限:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
但是如果我启动我的应用程序,PlusOneButton 看起来是灰色的。如果我点击它,按钮中会出现一个进度条并无限运行。在 Logcat 上,我收到此消息:
18367-18367/? W/PlusOneButtonView﹕ Failed to establish connection with status: 8
如果我在 API 文档 ( http://developer.android.com/reference/com/google/android/gms/common/ConnectionResult.html#INTERNAL_ERROR ) 中检查它,它会说类似内部错误的内容。但目前我不知道什么可以解决这个问题?
最佳答案
随着新的 Google Play Services 4.1 版本的发布,这个问题在我的案例中得到了解决。
https://code.google.com/p/google-plus-platform/issues/detail?id=704
关于Android PlusOneButton 不初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19814615/
我正在尝试将 PlusOneButton 添加到我的 Android 应用程序中。我按照 google ( https://developers.google.com/+/mobile/android
在我的 Android 应用程序中,我提供了点击 Google +1 按钮的可能性。 这适用于来自开发人员源 Material (https://developers.google.com/+/mob
我在我的 Android 应用程序中添加了一个 +1 按钮。我想添加一个回调以了解用户单击 +1 按钮后发生了什么(他是否验证了它的 +1?,他是否中止了?...) 我该怎么做? 谢谢! 最佳答案 您
我正在学习本教程 https://developers.google.com/+/mobile/android/recommend在我的应用中集成 +1 按钮。 一旦我将此代码放入 xml 中,我就会
https://developers.google.com/+/mobile/android/recommend 我注意到 PlusOneButton 现在有一段时间不工作了。我让它链接到 Googl
我在我的 Android 应用程序中使用 Google Plus SDK。在一些罕见的设备上,当我的包含 Google Plus 按钮的 View 被放大时,我遇到了以下崩溃: public void
我是一名优秀的程序员,十分优秀!