- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在我的 Android 应用程序中添加了一个 +1 按钮。我想添加一个回调以了解用户单击 +1 按钮后发生了什么(他是否验证了它的 +1?,他是否中止了?...)
我该怎么做?
谢谢!
最佳答案
您可以添加一个监听器来检查按钮何时被单击,稍后检查 Activity 的结果。
static final int PLUS_ONE_REQUEST = 1;
...
mPlusOneButton.setOnPlusOneClickListener(new PlusOneButton.OnPlusOneClickListener() {
@Override
public void onPlusOneClick(Intent intent) {
//here you can handle the initial click
//Start the activity to display the +1 confirmation dialog.
startActivityForResult(intent, PLUS_ONE_REQUEST);
}
});
...
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode == PLUS_ONE_REQUEST) {
switch(resultCode) {
case RESULT_OK:
//here the operation was successful
break;
case RESULT_CANCELED:
//here the user backed out or failed
break;
}
}
}
资料来源: Handling the click Getting a result from an activity
我希望这就是您要问的,更重要的是,这对您有所帮助。
关于安卓谷歌加 SDK : how to get callback on the +1 button (PlusOneButton),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19807940/
我正在尝试将 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
我是一名优秀的程序员,十分优秀!