Android 模拟器上出现内存不足错误,但设备上却没有

发布于 2024-12-04 19:47:07 字数 149 浏览 0 评论 0原文

在 Android 模拟器上,当我退出应用程序并立即再次运行它时,我得到了

OutOfMemoryError: bitmap size exceeds VM budget.

但在设备本身上,这种情况不会发生。为什么?

On the Android Emulator, when I exit my app and run it again immediately, I get

OutOfMemoryError: bitmap size exceeds VM budget.

But on the device itself, this does not happen. Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

静若繁花 2024-12-11 19:47:07

在模拟器上,默认最大堆大小约为 13MB。

在设备上,这取决于手机和 Android 版本。在我的 Motorola Droid 上,最大堆大小约为 21-22MB,在我的 HTC Desire 上约为 32MB。

这就是模拟器崩溃而不是设备崩溃的原因。

如果您想监视应用程序的堆大小,您可以调用类似的方法:

protected void displayMemoryUsage(String message) {
    int usedKBytes = (int) (Debug.getNativeHeapAllocatedSize() / 1024L);
    String usedMegsString = String.format("%s - usedMemory = Memory Used: %d KB", message, usedKBytes);
    Log.d(TAG, usedMegsString);
}

On a emulator the default max heap size is around 13MB.

On a device, it depends of the phone and of the android version. On my Motorola Droid, the max heap size is around 21-22MB and on my HTC Desire it's around 32MB.

That's why you have a crash on the emulator and not on your device.

If you want to monitor the heap size of your application you can call a similar method:

protected void displayMemoryUsage(String message) {
    int usedKBytes = (int) (Debug.getNativeHeapAllocatedSize() / 1024L);
    String usedMegsString = String.format("%s - usedMemory = Memory Used: %d KB", message, usedKBytes);
    Log.d(TAG, usedMegsString);
}
维持三分热 2024-12-11 19:47:07

在 VM 选项中增加 AVD RAM 和最大 VM 应用程序堆大小。

为此,请转到

“窗口”-->“AVD 管理器”-->“虚拟设备”-->“编辑”。

Increase the AVD RAM and the max VM application heap size in VM options.

To do that, go to

Window-->AVD Manager-->Virtual Devices-->Edit.

已下线请稍等 2024-12-11 19:47:07

您需要增加模拟器的堆大小 - 它对我有用
我将其从 16 M 增加到 32 M

You need to increase heap size for the emulator - it worked for me
i increased it from 16 M to 32 M

莫多说 2024-12-11 19:47:07

下面是如何从 Andriod studio 1.2.0

  1. 菜单工具->Android->AVD 管理器
  2. 中找到操作模拟器堆大小的选项,编辑选择的虚拟设备
  3. ,单击高级设置并向下滚动

在 android studio 中更改 VM 堆

Here is a lazy for how to find the options to manipulate heapsize for emulator from Andriod studio 1.2.0

  1. Menu Tools->Android->AVD Manager
  2. edit the virtual device of choice
  3. click advanced settings and scroll down

Change VM heap in android studio

送你一个梦 2024-12-11 19:47:07

可能是因为您的设备比模拟器有更多的内存。 这个问题向您展示了如何增加模拟器的大小。

另外,您可以 增加 Java VM 堆大小

Probably it is because you're device has more memory than your emulator. This SO question shows you how to increase the size on your emulator.

Additionally you could increase the Java VM Heap size.

一抹苦笑 2024-12-11 19:47:07

增加分配的内存大小...

Increase the size of memory allocated...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文