Android APP打开小程序后为何无法返回
我们APP打开小程序后,完成操作,通过launchApp无法正常返回到APP原页面,还在微信小程序页面中,具体代码如下
Android:客户端代码
if (resp.getType() == ConstantsAPI.COMMAND_LAUNCH_WX_MINIPROGRAM) {
WXLaunchMiniProgram.Resp launchMiniProResp = (WXLaunchMiniProgram.Resp) resp;
String extraData =launchMiniProResp.extMsg; // 对应JsApi navigateBackApplication中的extraData字段数据
finish();
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
}
小程序代码:
<button open-type="launchApp" app-parameter="wechat" binderror="launchAppError">打开APP</button>
