Android启动和安装应用的方法!

发布于 2022-09-14 12:09:03 字数 280 浏览 17 评论 6

启动应用方法:
1、可以点快捷方式!
2、用命令启动(1) adb shell am start -n 应用包名/应用入口(MAIN)或者(2)adb shell进入shell后运行am start -n 应用包名/应用入口(MAIN)
安装(卸载)应用的方法:
1、使用adb install(adb uninstall)
2、使用pm命令(1)adb shell pm install (uninstall)或者(2)adb shell进入shell后pm install (uninstall)

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

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

发布评论

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

评论(6

浅浅 2022-09-20 00:42:56

回复 10# prolj

    我知道你想写什么了。是不是想写“英文”啊。呵呵。

呆头 2022-09-19 22:57:25

回复 8# prolj

    呵呵。其实直接看字面意思也就明白了。基本能明白。(不翻译加负分哈)。版主要的全文是什么?
这已经是这两个命令的全文输出了哈。呵呵。

缪败 2022-09-19 19:44:29

回复 6# Kallawa

    我的E不好,怕误导了人。所以就原文贴出。1#是我常用到的。帖出来了。希望大家交流。

耳根太软 2022-09-19 14:12:07

本帖最后由 renxiao2003 于 2010-07-30 09:01 编辑

下面是PM的原文帮助,英文好的可以看

usage: pm [list|path|install|uninstall]
       pm list packages [-f]
       pm list permission-groups
       pm list permissions [-g] [-f] [-d] [-u] [GROUP]
       pm list instrumentation [-f] [TARGET-PACKAGE]
       pm path PACKAGE
       pm install [-l] [-r] PATH
       pm uninstall [-k] PACKAGE
       pm enable PACKAGE_OR_COMPONENT
       pm disable PACKAGE_OR_COMPONENT

The list packages command prints all packages.  Use
the -f option to see their associated file.

The list permission-groups command prints all known
permission groups.

The list permissions command prints all known
permissions, optionally only those in GROUP.  Use
the -g option to organize by group.  Use
the -f option to print all information.  Use
the -s option for a short summary.  Use
the -d option to only list dangerous permissions.  Use
the -u option to list only the permissions users will see.

The list instrumentation command prints all instrumentations,
or only those that target a specified package.  Use the -f option
to see their associated file.

The path command prints the path to the .apk of a package.

The install command installs a package to the system.  Use
the -l option to install the package with FORWARD_LOCK. Use
the -r option to reinstall an exisiting app, keeping its data.

The uninstall command removes a package from the system. Use
the -k option to keep the data and cache directories around
after the package removal.

The enable and disable commands change the enabled state of
a given package or component (written as "package/class").

下面是AM的原文帮助,英文好的看

usage: am [start|broadcast|instrument|profile]
       am start -D INTENT
       am broadcast INTENT
       am instrument [-r] [-e <ARG_NAME> <ARG_VALUE>] [-p <PROF_FILE>]
                [-w] <COMPONENT>
       am profile <PROCESS> [start <PROF_FILE>|stop]

       INTENT is described with:
                [-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>]
                [-c <CATEGORY> [-c <CATEGORY>] ...]
                [-e|--es <EXTRA_KEY> <EXTRA_STRING_VALUE> ...]
                [--ez <EXTRA_KEY> <EXTRA_BOOLEAN_VALUE> ...]
                [-e|--ei <EXTRA_KEY> <EXTRA_INT_VALUE> ...]
                [-n <COMPONENT>] [-f <FLAGS>] [<URI>]

如果你英文不太好。简单的应用看1#的帖子就知道了。

落花浅忆 2022-09-19 12:52:48

回复 3# Kallawa

    不错。我就是没举例子。呵呵。

孤芳又自赏 2022-09-16 00:42:26

谢谢版主支持。这是我这阵子做项目,琢磨又找不到答案(从网络),然后自己找命令看帮助发现的。呵呵。

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