调用外部应用程序

发布于 2024-10-14 07:06:50 字数 135 浏览 1 评论 0原文

如何从我的应用程序调用外部应用程序?

例如:我需要从我的应用程序调用 Shazam (应用程序)。 我可以在 logcat 中看到应用程序的包名称。

这对任何目的有用吗?

How can I call an external application from my application?

E.g: I need to call Shazam (application) from my app.
I can see the package name of the application in the logcat.

will that be useful for any purpose?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

太阳男子 2024-10-21 07:06:50

特别是对于 Shazam,以下代码有效:

Intent intent = new Intent("com.shazam.android.intent.actions.START_TAGGING");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

if(!context.getPackageManager().queryIntentActivities(intent, 0).isEmpty()) {
    context.startActivity(intent);
} else {
    // Shazam is not installed
}

START_TAGGING 是您点按 Shazam 小部件时发出的意图。

Specifically for Shazam, the following code works:

Intent intent = new Intent("com.shazam.android.intent.actions.START_TAGGING");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

if(!context.getPackageManager().queryIntentActivities(intent, 0).isEmpty()) {
    context.startActivity(intent);
} else {
    // Shazam is not installed
}

START_TAGGING is the intent which is issued when you tap the Shazam widget.

孤蝉 2024-10-21 07:06:50

您可以通过以下方式调用第三方应用程序的活动。

final Intent shazamIntent = new Intent("com.shazam.android");                
shazamIntent .setComponent(new  ComponentName("com.shazam.android","com.shazam.android.Splash"));
startActivity(shazamIntent );

但是,这并不是一个好方法。如果包名称发生变化(这是一种非常遥远的可能性)或活动名称发生变化(Splash 可能会更改为其他名称),您的应用程序将会崩溃。
如果 Shazam 有一个可以调用来开始听歌曲的 Intent,请使用它(不确定他们是否有)。

另外,请进行必要的检查,以防未安装 Shazam,以免您的通话崩溃。

You can call a third party application's activity in the following way.

final Intent shazamIntent = new Intent("com.shazam.android");                
shazamIntent .setComponent(new  ComponentName("com.shazam.android","com.shazam.android.Splash"));
startActivity(shazamIntent );

But, this is not a great way to go about it. In case the package name changes (which is a very remote possibility) or the activity name changes (Splash could change to something else) your application would break.
If Shazam has an Intent which can be invoked to start listening to a song use that (not sure if they have one).

Also, do necessary check in case Shazam is not installed so that your call doesn't crash.

擦肩而过的背影 2024-10-21 07:06:50

创建应用程序的启动器意图对象并说出 startActivity。

Create the Application's launcher intent object and say startActivity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文