调用外部应用程序
如何从我的应用程序调用外部应用程序?
例如:我需要从我的应用程序调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
特别是对于 Shazam,以下代码有效:
START_TAGGING
是您点按 Shazam 小部件时发出的意图。Specifically for Shazam, the following code works:
START_TAGGING
is the intent which is issued when you tap the Shazam widget.您可以通过以下方式调用第三方应用程序的活动。
但是,这并不是一个好方法。如果包名称发生变化(这是一种非常遥远的可能性)或活动名称发生变化(
Splash
可能会更改为其他名称),您的应用程序将会崩溃。如果 Shazam 有一个可以调用来开始听歌曲的 Intent,请使用它(不确定他们是否有)。
另外,请进行必要的检查,以防未安装 Shazam,以免您的通话崩溃。
You can call a third party application's activity in the following way.
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.
创建应用程序的启动器意图对象并说出 startActivity。
Create the Application's launcher intent object and say startActivity.