Android部分调试开关

开启 GPU Render 的profiling bar:

adb shell setprop debug.hwui.profile visual_bars #或visual_lines

adb shell setprop debug.hwui.profile.maxframes 400 #控制汇总条长度

 

打开 Overdraw 检查:

adb shell setprop debug.hwui.overdraw show

 

查看dirty区域:

adb shell setprop debug.hwui.show_dirty_regions true

adb shell setprop debug.hwui.render_dirty_regions true

kill掉然后重启进程即可

 

dump内存信息分析:

adb shell am dumpheap <进程PID> /data/boutique.hprof

sdk/tool/hprof-conv 进行格式转换

 

开启显示各个view的布局线

adb shell setprop debug.layout true

 

强制某个进程GC

kill -10 pid

 

你可能感兴趣的:(Android部分调试开关)