我对从资源加载Bitmap有疑问。我的代码:
public void onClick(View view) {
if (mainButton == view) {
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.test);
}
}
test.jpg图像分辨率为3288 x 4936px。它是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中创建的新图像。
答案 0 :(得分:5)
您可以在android:largeHeap="true"
文件中的应用标记上使用AndroidManifest.xml
来超过64MB
限制。这不适用于pre 3.0
设备。
这可能会解决您的问题。如果仍然不够,您可以使用本机代码加载位图,其中堆限制是设备上的完整内存。 NDK
更为复杂,请先尝试上述解决方案。
答案 1 :(得分:4)
好的,我分两步解决了我的问题:
1)根据吉姆的回答,我已经添加了
android:largeHeap="true"
在AndroidManifest.xml
文件中的应用标记上。
2)由于我的设备屏幕高DPI
,图像已自动调整大小。为避免这种情况,我必须将 inScaled 选项设置为 false :
BitmapFactory.Options options = new BitmapFactory.Options();
options.inScaled = false;
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.raw.test, options);
感谢您的所有答案。
答案 2 :(得分:0)
查看此资源:http://developer.android.com/training/displaying-bitmaps/load-bitmap.html
特别是decodeSampledBitmapFromResource
方法。