问题描述
当我尝试从 Eclipse 运行我的 WXGA800 模拟器时,它会给出这样的错误
分配内存失败:8此应用程序已请求运行时以不寻常的方式终止它.请联系应用程序的支持团队以获取更多信息.
我还检查了以下链接
, 配置)
较早的 Android SDK 管理器版本:
内置 WXGA800 皮肤也有同样的问题.我通过将虚拟设备设置编辑为:
- 目标 4.0.3 API 15/4.1.0 API 16
- SD 卡 300MiB
- 分辨率 1280 x 800(手动设置 - 不是内置的)
- 设备内存大小 1024MB(数字加上 MB)
- 抽象 LCD 160
这是我的 4.1.0 API 16 平板电脑配置C:Users<user>.androidavd<avd-profile-name>.avdconfig.ini
hw.lcd.density=160sdcard.size=300Mskin.path=1280x800皮肤名称=1280x800hw.cpu.arch=armabi.type=armeabi-v7ahw.cpu.model=cortex-a8vm.heapSize=48hw.ramSize=1024MBimage.sysdir.1=系统图像android-16armeabi-v7a
此配置也显示软件密钥
When I try to run my WXGA800 emulator from Eclipse it's giving an error like this
Failed to allocate memory: 8
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
I checked the following links also
Android: failed to allocate memory
I have tried reducing RAM size in emulator and increasing Java heapsize and ramsize but still I am facing the same error.
Update: Starting with Android SDK Manager version 21, the solution is to edit C:Users<user>.androidavd<avd-profile-name>.avdconfig.ini
and change the value
hw.ramSize=1024
to
hw.ramSize=1024MB
The emulator is really slow, use the new API17 Intel x86 images if you want to change it .. (HAXM, Configuration)
Earlier Android SDK Manager releases:
Had the same problem with the built-in WXGA800 skin. I got it working by editing the virtual device setup to:
- Target 4.0.3 API 15 / 4.1.0 API 16
- SD-card 300MiB
- Resolution 1280 x 800 (set manually -not the built-in ones)
- Device ram size 1024MB (with MB added to the number)
- Abstracted LCD 160
Here my tablet config for 4.1.0 API 16C:Users<user>.androidavd<avd-profile-name>.avdconfig.ini
hw.lcd.density=160
sdcard.size=300M
skin.path=1280x800
skin.name=1280x800
hw.cpu.arch=arm
abi.type=armeabi-v7a
hw.cpu.model=cortex-a8
vm.heapSize=48
hw.ramSize=1024MB
image.sysdir.1=system-imagesandroid-16armeabi-v7a
This config shows the software keys too
这篇关于Android模拟器分配内存失败8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!