在 Android 模拟器中显示 CPU 使用率和 FPS
我已经将 DDMS 设置为与模拟器一起使用并显示正在运行的进程等。但是在模拟器的开发工具中,它首先不允许我勾选“显示 CPU 使用情况”框,其次我似乎没有显示选项根据互联网上的消息,FPS 显然是可以做到的。
有没有人遇到过这个问题,并且知道如何解决它并在 Android 游戏运行时显示 CPU 使用情况和 FPS?
谢谢
I have set up my DDMS to work with the emulator and display the processes running etc. but in the Dev Tools of my emulator it firstly wont let me tick the Show CPU Usage box, and secondly I do not seem to have an option to display the FPS which apparently, according to sources on the internet, is possible to do.
Has anyone had this trouble and know how I can solve it and display CPU usage and FPS as my android game is running?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要了解模拟器正在模拟的 CPU 速度,请尝试以下操作:
1) 启动 shell 会话 (adb shell),
2) 然后运行“cat /proc/cpuinfo”以获取 BogoMIPS。
以下是有关此内容的更多信息。
To get an idea of what CPU speed your emulator is emulating try this:
1) start a shell session (adb shell),
2) then run "cat /proc/cpuinfo" to get the BogoMIPS.
Here’s more information on this.