如果需要插件在完成功能后调起主程序,仅需调用下列代码:
Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName cn =new ComponentName("主程序包名","io.dcloud.PandoraEntry");
intent.setComponent(cn);
startActivity(intent);
io.dcloud.PandoraEntry 是官方固定的。
1 个评论
要回复文章请先登录或注册
1***@qq.com