gpt4 book ai didi

android - 使用 phonegap 回调 Android Intent

转载 作者:太空宇宙 更新时间:2023-11-03 11:20:53 26 4
gpt4 key购买 nike

我正在使用 phoneGap 框架开发一个 android 应用程序,在我的应用程序中我想发送一封电子邮件,为此,我创建了一个 phoneGap 插件。在插件中,我正在开始电子邮件 Activity 。我在这里面临的问题是,我想在该 Activity (电子邮件)结束后立即调用一些功能。那么如何实现呢??

插件方法是这样的:

public PluginResult execute(String action, JSONArray args, String callbackId) {

try {
if (action.equals("startActivity")) {
Intent i=new Intent(action);
// code for email....
this.ctx.startActivity(i);
//call back function here ...???


return new PluginResult(PluginResult.Status.OK);

}catch (JSONException e) {
e.printStackTrace();
return new PluginResult(PluginResult.Status.JSON_EXCEPTION);
}

那么如何为电子邮件 Activity 添加回调函数。这样该函数仅在 Activity 关闭时执行... ??

提前致谢..

最佳答案

您不能像使用相机 Intent 那样使用 onActivityResult 方法吗?

而不是像这样开始 Activity

启动 Activity ()

使用 startActivityForResult()

然后你重写 onActivityResult() 方法

关于android - 使用 phonegap 回调 Android Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8641743/

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