gpt4 book ai didi

android - 如何使用自定义 Intent 从 eclipse 启动 android Activity

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:07:56 25 4
gpt4 key购买 nike

我想,出于多种测试目的,从 Eclipse 启动我的 android Activity ,并使用特定的 Intent 数据(例如,额外的数据,如要加载的文件名)。我可以在菜单的哪个位置提供这个?

  • 在运行配置中,3个选项卡中没有提供任何参数
  • 我可以更改资源文件中的一些参数,但我担心我可能会泄漏将转到最终应用程序的资源。
  • 可以在 adb 中完成:See here但它目前无法与 Eclipse 中的 F11 启动命令相关联,该命令对于同时重新编译和重新启动很有用。

最佳答案

如果您仍在使用 eclipse,您可能需要创建一个带有自定义任务的简单 ant 脚本来执行测试。 ADB shell 有一个启动 Activity 的命令,您还可以在其中指定额外的

am [start|instrument]

am start [-a <action>] [-d <data_uri>]
[-t <mime_type>] [-c <category> [-c <category>] ...]
[-e <extra_key> <extra_value>
[-e <extra_key> <extra_value> ...]
[-n <component>] [-D] [<uri>]

am instrument [-e <arg_name> <arg_value>] [-p <prof_file>] [-w] <component>

你会像这样传递它们:

am start -a android.intent.action.VIEW -c android.intent.category.DEFAULT -e foo bar -e bert ernie -n org.package.name/.MyCustomActivity

附言不要忘记 Activity 前的点。

这可以转换为一个 ant 目标,您应该将其放入 ant 脚本中。

<target name="run">
<exec executable="adb">
<arg value="shell"/>
<arg value="am"/>
<arg value="start"/>
<arg value="-a"/>
<arg value="android.intent.action.MAIN"/>
<arg value="-e"/>
<arg value="extra_key extra_value"/>
<arg value="-n"/>
<arg value="{package.name}/{activity}"/>
</exec>
</target>

你可以这样执行:ant debug install run

如何从 eclipse 运行 ant 文件见:

关于android - 如何使用自定义 Intent 从 eclipse 启动 android Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24569419/

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