在 Eclipse 中调试 Android 应用程序时如何指定不同的 Intent?

发布于 2024-11-29 17:33:30 字数 100 浏览 0 评论 0原文

当我单击“调试”时,应用程序将以 Intent action=MAIN;
启动 我想用 VIEW 启动它,并指定一个 URI。

When I click debug, the application is started with Intent action=MAIN;
I'd like to start it with VIEW, and specify a URI.

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

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

发布评论

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

评论(1

毁梦 2024-12-06 17:33:30

通过浏览Adroid SDK中的Eclipse ADT源码找到了它。

在目标设备上启动 shell:

$ adb shell

然后使用 Android 应用程序管理器:

am -a android.intent.action.VIEW -c android.intent.category.DEFAULT -t "audio/x-mpegurl" -d "file :///mnt/sdcard/Audio/vocal.m3u”

这将打开“完整操作”对话框。

输入“am”即可查看用于指定意图的所有选项

Found it by browsing the Eclipse ADT source in the Adroid SDK.

start a shell on the target device:

$ adb shell

Then use the Android application manager:

am -a android.intent.action.VIEW -c android.intent.category.DEFAULT -t "audio/x-mpegurl" -d "file:///mnt/sdcard/Audio/vocal.m3u"

This brings up the "complete action with" dialog.

Type 'am' to see all the options for specifying intents

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