開發環境: windows 2008 R2 x64, JDK 7u10, ADT v21.0.1-543035一.啟動 Nexus 7 模擬器失敗模擬器啟動出現如下錯誤:Starting emulator for AVD 'nexus7'Failed to allocate memory: 8This application has requested the Runtime to terminate it in an unusual way.Please contact the application's support team for more information. 網路搜尋解決:來源:http://code.google.com/p/android/issues/detail?id=36080方法:用命令列啟動,指定記憶體為 512M,預設1024M有問題c:\xxx>emulator -avd nexus7 -memory 512 二.GUI 響應非常慢模擬器啟動出現如下錯誤:Starting emulator for AVD 'nexus7'emulator: ERROR: Could not load OpenGLES emulation library: Could not load DLL!emulator: WARNING: Could not initialize OpenglES emulation, using software renderer.介面操作,響應很慢 網路搜尋解決:來源:http://stackoverflow.com/questions/11674306/eclipse-android-emulator-wont-launch原因是未指定類庫地址相關環境變數方法:添加變數定義:LD_LIBRARY_PATH=/home/xxxx/devel/android-sdk-linux/tools/lib 為此,建立一個批處理來啟動模擬器 em.bat,存放在sdk的tools目錄下,如下:setlocalset LD_LIBRARY_PATH=K:\android\ide\adt-bundle-windows-x86_64\sdk\tools\libemulator.exe -avd nexus7 -memory 512 -gpu on 開發中,先用命令列啟動模擬器,再在運行調試時,選擇當前啟動並執行AVD即可.