Android_调试命令

Android学习系列(29)--App调试的几个命令实践


adb logcat -v time
adb logcat *:E > D:\tmp.txt

adb bugreport > xxx.log

dumpsys [options]
               meminfo 显示内存信息
               cpuinfo 显示CPU信息
               account 显示accounts信息
               activity 显示所有的activities的信息
               window 显示键盘,窗口和它们的关系
               wifi 显示wifi信息

#查看应用com.tianxia.test的内存使用情况
adb shell dumpsys meminfo com.tianxia.test

top -m 5 -t


你可能感兴趣的:(Android_调试命令)