【发布时间】:2015-02-27 13:39:49
【问题描述】:
我对从资源加载位图有疑问。我的代码:
public void onClick(View view) {
if (mainButton == view) {
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.test);
}
}
test.jpg 图像分辨率为 3288 x 4936 像素。它是 jpeg(未压缩时为 3,9MB / 48,7MB)。虽然此功能有效(在我的 Nexus 7 2013 设备上),但出现以下异常:
java.lang.OutOfMemoryError: Failed to allocate a 259673100 byte allocation with 5222644 free bytes and 184MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:609)
at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:444)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:467)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:497)
at pl.jaskol.androidtest.MainActivity.onClick(MainActivity.java:50)
at android.view.View.performClick(View.java:4756)
at android.view.View$PerformClick.run(View.java:19749)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
为什么应用程序尝试分配多达 248MB 的空间? 我在 Qt for Android 中编写了类似的应用程序,在资源中使用相同的图像,它工作正常。
编辑:
我无法调整它的大小。
这是一个非常简单的应用程序,就像 hello world。它什么也不做,只是从资源中加载位图。
EDIT2:
Jim 的解决方案对我有用。但是还有另一个问题。位图加载后,它是 4 倍太大(2 倍高度和 2 倍宽度)。我尝试了各种图像,包括在 Pinta 或 Gimp 中创建的新图像。
【问题讨论】:
-
尝试在其上应用一些
Options以在生成位图时更改样本大小。 -
好吧,该图像“仅”需要大约 64MB(无论如何这几乎在每部手机上都会失败)。您必须在其他地方使用更多内存。请添加相关代码。有趣的是,失败的内存请求正好是位图的 4 倍。
-
我无法调整它的大小。我必须修改它并保存。
标签: java android image memory bitmap