gpt4 book ai didi

android - 从 ionic 应用程序调用 native android 应用程序

转载 作者:搜寻专家 更新时间:2023-11-01 08:35:17 28 4
gpt4 key购买 nike

我正在开发一个将由 Android 原生应用程序调用的应用程序。我也得给他们打电话。为此,我找到了 this plugin .

他们将按照以下代码调用我的应用程序(并希望我调用他们的应用程序):

String packageName = “com.android.app”;
Intent intent = getPackageManager().getLaunchIntentForPackage(packageName);
if (intent == null) {
// The app is not installed
intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(“market://details?id=” + packageName));
}
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(“param”, “aaaaa”);
startActivity(intent);

我不知道当他们这样做时插件是否可以打开我的应用程序(他们的应用程序也会打开)。

我在寻找一种在 ionic 中使用 intends 的方法,但一无所获。

谢谢!

最佳答案

也许它会帮助别人解决我的问题。

要打开另一个 Android 应用程序,我使用 com.lampa.startapp .这样做的代码是:

var sApp = startApp.set({
"package": "packageName" //The packageName of the app I want to open
}, {
//extras I want to add
"myParams" : "aaaaa"
});
sApp.start();

为了处理 Intent (打开我的应用程序的 Intent ),我使用 cordova-plugin-intent使用以下代码:

//To get the intent and extras when the app it's open for the first time
window.plugins.intent.getCordovaIntent (function (intent) {
intenthandler(intent);
});

//To get the intent and extras if the app is running in the background
window.plugins.intent.setNewIntentHandler (function (intent) {
intenthandler(intent);
});

//To handle the params
var intenthandler = function (intent) {
if (intent && intent.extras && intent.extras.myParams) {
//Do something
}
};

就是这样!

关于android - 从 ionic 应用程序调用 native android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37165813/

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