Android adb shell dumpsys

目的

查看系统服务相关信息

解读

系统源码路径

adb shell dumpsys --hlep

查看系统服务信息

方法:

①adb shell dumpsys -l

②adb shell service list

详细说明

注:

①adb shell dumpsys servicename -h

代表此模块可以查哪些信息

②举例说明,adb shell service list | findstr activity

进入adb shell后,可以使用grep

但没有进入adb shell环境,可以用findstr代替grep

详细说明activity系统服务

adb shell dumpsys activity -h

怎么获取设备最上层即跟用户交互层的activity?

adb shell

dumpsys activity activities | sed -En -e '/Running activities/,/Run #0/p'

怎么获取四大组件信息?

adb shell dumpsys activity activities----------查看Activity组件信息

adb shell dumpsys activity services-----------查看Service组件信息

adb shell dumpsys activity providers----------产看ContentProvider组件信息

adb shell dumpsys activity broadcasts--------查看BraodcastReceiver信息

adb shell dumpsys activity intents--------------查看Intent信息

adb shell dumpsys activity processes---------查看进程信息

你可能感兴趣的:(Android adb shell dumpsys)