博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
adb shell am 的用法
阅读量:6147 次
发布时间:2019-06-21

本文共 3639 字,大约阅读时间需要 12 分钟。

 

使用此命令可以从cmd控制台启动 activity, services;发送 broadcast等等:
 
C:\Users\Administrator>adb shell am usage: am [subcommand] [options]
    start an Activity: am start [-D] [-W] <INTENT>         -D: enable debugging         -W: wait for launch to complete
    start a Service: am startservice <INTENT>
    send a broadcast Intent: am broadcast <INTENT>
    start an Instrumentation: am instrument [flags] <COMPONENT>         -r: print raw results (otherwise decode REPORT_KEY_STREAMRESULT)         -e <NAME> <VALUE>: set argument <NAME> to <VALUE>         -p <FILE>: write profiling data to <FILE>         -w: wait for instrumentation to finish before returning
    start profiling: am profile <PROCESS> start <FILE>     stop profiling: am profile <PROCESS> stop
    start monitoring: am monitor [--gdb <port>]         --gdb: start gdbserv on the given port at crash/ANR
    <INTENT> specifications include these flags:         [-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>]         [-c <CATEGORY> [-c <CATEGORY>] ...]         [-e|--es <EXTRA_KEY> <EXTRA_STRING_VALUE> ...]         [--esn <EXTRA_KEY> ...]         [--ez <EXTRA_KEY> <EXTRA_BOOLEAN_VALUE> ...]         [-e|--ei <EXTRA_KEY> <EXTRA_INT_VALUE> ...]         [-n <COMPONENT>] [-f <FLAGS>]         [--grant-read-uri-permission] [--grant-write-uri-permission]         [--debug-log-resolution]         [--activity-brought-to-front] [--activity-clear-top]         [--activity-clear-when-task-reset] [--activity-exclude-from-recents]         [--activity-launched-from-history] [--activity-multiple-task]         [--activity-no-animation] [--activity-no-history]         [--activity-no-user-action] [--activity-previous-is-top]         [--activity-reorder-to-front] [--activity-reset-task-if-needed]         [--activity-single-top]         [--receiver-registered-only] [--receiver-replace-pending]         [<URI>]
 
 
使用实例:
如启动一个 Activity:
 
格式:
adb shell am start -n 包名/包名+类名(-n 类名,-a action,-d date,-m MIME-TYPE,-c category,-e 扩展数据,等)。
 
实例1:
C:\Users\Administrator>adb shell am start -n com.android.camera/.Camera Starting: Intent { cmp=com.android.camera/.Camera }
 
实例2:(带extra 的 intent)
C:\Users\Administrator>adb shell am start -n com.android.camera/.Camera -e thisKey thisIsValue Starting: Intent { cmp=com.android.camera/.Camera (has extras) }
其中 extra 的 key 为 abc ,value 为字串 "hello"
 
还可以发送命令模拟手机低电环境:

实例:

adb shell am broadcast -a android.intent.action.BATTERY_CHANGED --ei "level" 3 --ei "scale" 100

 

Android中adb push和adb install的使用区别

   
2014-03-10 23:41:44
你可能感兴趣的文章
jquery的each方法取值传送数组
查看>>
第一篇——项目开始前夕【我的第一次云项目连载】
查看>>
ACL配置
查看>>
linux常见系统问题
查看>>
我的友情链接
查看>>
saltstack实战-3
查看>>
PHP 使用GD库生成二维码 实现圆角
查看>>
iOS定位新功能
查看>>
做基准测试时tpcc相关注意点
查看>>
推荐一个关于CubieBoard相关的BLOG --- onefish的BLOG
查看>>
好久没来了
查看>>
文件、目录管理
查看>>
人生苦短我用python(03),如何调试python程序
查看>>
2018-3-6 Linux学习笔记
查看>>
第五周 网络
查看>>
基础网络
查看>>
iOS7面试题
查看>>
关于sqlmap的一些命令
查看>>
全局变量与局部变量
查看>>
js 实现replaceAll
查看>>