gpt4 book ai didi

java - Android BitmapFactory.decodeFile skia 错误

转载 作者:行者123 更新时间:2023-11-29 05:41:38 27 4
gpt4 key购买 nike

我正在设计一个显示一些图像的 Activity 。下面的代码获取图像文件并将它们放入屏幕。

        for(int i=0;i<photoPaths.size();i++){
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 4;
//Bitmap bm= BitmapFactory.decodeFile(new File(photoPaths.get(i)).getAbsolutePath());
Bitmap bm= BitmapFactory.decodeFile(new File(photoPaths.get(i)).getAbsolutePath());
int imageH=bm.getHeight();
int imageW=bm.getWidth();
ImageView image=new ImageView(this);
image.setImageBitmap(bm);
int padding=10;
image.setPadding(0, padding, padding, 0);
}

代码在放置 5 张照片时运行良好。在他们之后,当第 6 位放置代码失败时。

这是 LogCat 消息:

       06-27 11:13:13.202: D/skia(17373): --- decoder->decode returned false
06-27 11:13:13.202: D/AndroidRuntime(17373): Shutting down VM
06-27 11:13:13.202: W/dalvikvm(17373): threadid=1: thread exiting with uncaught exception (group=0x4142c2a0)
06-27 11:13:13.202: E/AndroidRuntime(17373): FATAL EXCEPTION: main
06-27 11:13:13.202: E/AndroidRuntime(17373): java.lang.OutOfMemoryError
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.graphics.BitmapFactory.nativeDecodeStream(Native Method)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:652)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.graphics.BitmapFactory.decodeFile(BitmapFactory.java:391)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.graphics.BitmapFactory.decodeFile(BitmapFactory.java:451)
06-27 11:13:13.202: E/AndroidRuntime(17373): at .PhotoGallery.onCreate(PhotoGallery.java:94)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.Activity.performCreate(Activity.java:5188)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2074)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2135)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.ActivityThread.access$700(ActivityThread.java:140)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1237)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.os.Handler.dispatchMessage(Handler.java:99)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.os.Looper.loop(Looper.java:137)
06-27 11:13:13.202: E/AndroidRuntime(17373): at android.app.ActivityThread.main(ActivityThread.java:4921)
06-27 11:13:13.202: E/AndroidRuntime(17373): at java.lang.reflect.Method.invokeNative(Native Method)
06-27 11:13:13.202: E/AndroidRuntime(17373): at java.lang.reflect.Method.invoke(Method.java:511)
06-27 11:13:13.202: E/AndroidRuntime(17373): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1038)
06-27 11:13:13.202: E/AndroidRuntime(17373): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:805)
06-27 11:13:13.202: E/AndroidRuntime(17373): at dalvik.system.NativeStart.main(Native Method)

我该如何解决这个问题?

最佳答案

您错过了将 options 对象传递给 decodeFile:

 Bitmap bm= BitmapFactory.decodeFile(new File(photoPaths.get(i)).getAbsolutePath(), options);

关于java - Android BitmapFactory.decodeFile skia 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17338065/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com