Android: failed to allocate memory

后端 未结 12 1727
臣服心动
臣服心动 2020-11-27 16:12

I\'m trying to create an emulator with 2047 mb ram. When I run it, I get this error:

[2011-02-22 14:24:14 - Emulator]
[2011-02-22 14:24:14 - Emulator] This a         


        
相关标签:
12条回答
  • 2020-11-27 16:58

    I was also getting this error message after upgrading my Android ADK Tool to 20 (even though I have more than sufficient RAM). No changes made to the 'Device RAM size' property helped (whether higher or lower, or with "MB").

    What did work for me is running the emulator at the command line and specifying the RAM amount there (less than the default in my case); for example:

    emulator -memory 512 -avd my_avd
    
    0 讨论(0)
  • 2020-11-27 17:01

    I had the same problem but then figured it out. The problem was in the amount of ram I had specified for the virtual machine, and it was 1024MB by default, now I changed it to 512MB and it works; though my pc has 8GB of RAM.

    0 讨论(0)
  • 2020-11-27 17:02

    Edit the Device settings and change the RAM allocation to a lower number. If it was 1024 or More, reduce it to 512Mb or 256Mb. You can Change it in "Edit Android Virtual Device (AVD)" dialog's Hardware Section --> Device ram size

    0 讨论(0)
  • 2020-11-27 17:03

    Add in Run Configurations window the parameter -memory 512

    See screenshot for reference

    Run Options

    0 讨论(0)
  • 2020-11-27 17:06

    Solution to running a faster emulator:

    http://androiddevnotes.com/2011/03/08/1299521520000.html

    Runs my game a lot faster, comparable to phone quality.

    -- Update 08/24/12 --

    I see that people still come here and comment on this answer, and I have done more research on this issue. I present to you the results of my findings.

    NOTE: These tests were run on my computer, your computer may be different.

    1. Running an Android 2.2 (armeabi) emulator with Property 'Device ram size' = 2048 will fail, just as before
    2. Running an Android 2.2 (armeabi) emulator with Property 'Device ram size' = 2048 MB will pass, however if you actually check the ram on the device, its around 128 MB.
      • check 1: Settings > Applications > Running Services - add all the numbers on the bottom of the screen
      • check 2: run the following command in adb shell: cat /proc/meminfo/ and note the MemTotal field
    3. Running an Android 4.1 (armeabi-v7) emulator with Property 'Device ram size' = 2048 will work, however if you actually check the ram on the device its around 512 MB
      • check 1: Settings > Apps > Running tab - add all the numbers on the bottom of the screen
      • check 2: run the following command in adb shell: cat /proc/meminfo/ and note the MemTotal field
    4. Running an Android 4.1 (armeabi-v7) emulator with Property 'Device ram size' = 2048 MB will work as well, but with the same results as 3.

    Conclusion

    Adding 'MB' as noted in some of the comments below may allow your device to be launched, however it doesn't actually have 2 GB of RAM. Even with a 4.1 Emulator, the RAM Size is at 512 MB.

    Recommendation

    Please use an actual device for testing.

    0 讨论(0)
  • 2020-11-27 17:06

    I had to do this Go to "Tools -> Android -> AVD Manager -> Chose your device -> Edit -> Advanced Settings -> Change the RAM parameter to 512 Mb.

    0 讨论(0)
提交回复
热议问题