在 Eclipse 中调试 Android 应用程序时如何指定不同的 Intent?
当我单击“调试”时,应用程序将以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过浏览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