1

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

        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)

我该如何解决这个问题?

4

2 回答 2

3

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

 Bitmap bm= BitmapFactory.decodeFile(new File(photoPaths.get(i)).getAbsolutePath(), options);
于 2013-06-27T08:17:50.070 回答
0
  06-27 11:13:13.202: E/AndroidRuntime(17373): FATAL EXCEPTION: main
   06-27 11:13:13.202: E/AndroidRuntime(17373): java.lang.OutOfMemoryError

你内存不足。您需要减少应用程序的内存使用量。请注意,如果图像相当大(例如 30+MB),则单独使用它可能会占用太多内存。

于 2013-06-27T08:21:47.477 回答