在windows下打开cmd
在cmd输入“adb shell”就可以进入Android 的Shell状态:
命令:
ps 命令,查看进程。
例子:ps -aux grep com
说明:列举出名字进程名以com开头的进程。
top命令是看占用率的。
例子:top -d 1 -s cpu -m 30
说明:-d 1 更新时间为1秒,-s cpu 用CPU来排序 -m 30 最多列举出30个进程
详细说明:top -h进入说明模式
$ top -h
top -h
Usage: top [-m max_procs] [-n iterations] [-d delay] [-s sort_column] [-t] [-h]
-m num Maximum number of processes to display. // 最多显示多少个进程
-n num Updates to show before exiting. // 刷新次数
-d num Seconds to wait between updates. // 刷新间隔时间(默认5秒)
-s col Column to sort by // 按哪列排序
-t Show threads instead of processes. // 显示线程信息而不是进程
-h Display this help screen. // 显示帮助文档
$ top -n 1
top -n 1