When I click the "Show CPU usage" checkbox, nothing happens. The checkbox is not checked.
Dev Tools > Development Settings > Show CPU usage
Any ideas?
You can always use adb shell and then type top . There should be all the information you need.
adb shell
top
On some machines, this will not work because the TERM variable is not set. You can install it by typing:
export TERM=xterm
This also works for me. In any case, to get the top level for updating in one view in the terminal instead of manually scrolling down?