20

我一直在玩OpenGL ESAndroid 上的开发。OpenGL ES应用程序似乎在我的开发机器上的模拟器中运行缓慢。这是否反映了实际硬件的可能性能?如果图形性能变得迟缓,我担心会花费太多时间来开发应用程序。

4

5 回答 5

9

The emulator is super slow on my Mobile Intel Pentium M 725, 1600 MHz.

I'm assuming the emulator isn't representative of real world performance.

于 2008-09-19T16:24:10.760 回答
1

模拟器太慢了,在某些情况下,使用它时甚至无法启动 openGL 应用程序。虽然android的实际硬件甚至可以如此强大,你甚至可以在上面玩GTA。

于 2014-09-10T16:10:09.363 回答
1

在 Windows 上配置 VM 加速

Windows 虚拟机加速需要安装英特尔硬件加速执行管理器(英特尔 HAXM)。该软件需要具有虚拟化技术 (VT) 支持的 Intel CPU 和以下操作系统之一:

Windows 7(32/64 位)
Windows Vista(32/64 位)
Windows XP(仅限 32 位)
要安装虚拟化驱动程序:

启动 Android SDK Manager,选择 Extras,然后选择 Intel Hardware Accelerated Execution Manager。
下载完成后,执行
<sdk>/extras/intel/Hardware_Accelerated_Execution_Manager/IntelHAXM.exe

按照屏幕上的说明完成安装。安装完成后,打开命令提示符窗口并运行以下命令,确认虚拟化驱动程序运行正常:

sc query intelhaxm

您应该会看到一条包含以下信息的状态消息:SERVICE_NAME:intelhaxm

   ...
   STATE              : 4  RUNNING

   ...

要使用 VM 加速运行基于 x86 的模拟器:

如果您从命令行运行模拟器,只需指定一个基于 x86 的 AVD:

emulator -avd <avd_name>
于 2015-09-24T19:24:07.553 回答
1

After the new update the emulators have become much more reliable but still can't be taken as the way to check the performance of your application. Till now testing the application of real devices are more reliable then emulators.

于 2020-10-03T10:45:04.960 回答
0

使用 Android Studio 2.0 的新模拟器,如果你的电脑不错,它运行起来相当流畅,至少对于我的应用程序来说是这样!

检查功能

于 2016-04-15T17:41:56.283 回答