gpt4 book ai didi

安卓谷歌加 SDK : how to get callback on the +1 button (PlusOneButton)

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:44:19 25 4
gpt4 key购买 nike

我在我的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com