Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't enable "Show CPU usage" on emulator

Tags:

android

When I click on "Show CPU usage" checkbox, nothing happens. Checkbox does not get checked.

Dev Tools > Development Settings > Show CPU usage

Any ideas?

like image 619
alex2k8 Avatar asked Jan 26 '11 21:01

alex2k8


1 Answers

You can always use adb shell and then type in top. There should be all the info you need.

On some machines it will not work, because the TERM Variable is not set. You can set it by typing:

export TERM=xterm

like image 163
devsnd Avatar answered Sep 23 '22 10:09

devsnd