0

かなり多くの結果が返されると、メモリの問題が発生します (約 30 まで)。実際のエラーは次のとおりです。

08-20 10:55:19.820: E/dalvikvm-heap(13483): Out of memory on a 499408-byte allocation.
08-20 10:55:19.835: E/AndroidRuntime(13483): FATAL EXCEPTION: main
08-20 10:55:19.835: E/AndroidRuntime(13483): java.lang.OutOfMemoryError
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.graphics.BitmapFactory.nativeDecodeStream(Native Method)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:650)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.graphics.BitmapFactory.decodeFile(BitmapFactory.java:389)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at com.directenquiries.assessment.tool.Globals.Functions.decodeSampledBitmapFromFile(Functions.java:94)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at com.directenquiries.assessment.tool.db.assets.AssetRow.image(AssetRow.java:119)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at com.directenquiries.assessment.tool.ViewAssetsList.loadTable(ViewAssetsList.java:75)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at com.directenquiries.assessment.tool.ViewAssetsList.onResume(ViewAssetsList.java:60)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1188)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.app.Activity.performResume(Activity.java:5280)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2606)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2644)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1269)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.os.Handler.dispatchMessage(Handler.java:99)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.os.Looper.loop(Looper.java:137)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at android.app.ActivityThread.main(ActivityThread.java:4898)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at java.lang.reflect.Method.invokeNative(Native Method)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at java.lang.reflect.Method.invoke(Method.java:511)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
08-20 10:55:19.835: E/AndroidRuntime(13483):    at dalvik.system.NativeStart.main(Native Method)

画像を縮小する方法は次のとおりです。

public static Bitmap decodeSampledBitmapFromFile(String imagePath, int reqWidth, int reqHeight) {

        // First decode with inJustDecodeBounds=true to check dimensions
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(imagePath, options);

        // Calculate inSampleSize
        options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);

        // Decode bitmap with inSampleSize set
        options.inJustDecodeBounds = false;
        return BitmapFactory.decodeFile(imagePath, options);
    }

イメージは DB から取得され、次のように設定されます。

   @Override
        public String imagePath() { 
                if (firstissuePhoto == null) {
                    firstissuePhoto = StationPhotoDB.getFirstPhotoWithStationObjectID(this.stationObjectID);    
                        if(!firstissuePhoto.endsWith("jpg")){
                            firstissuePhoto = "notset";
                        }
                }
                return firstissuePhoto; 

        }



    @Override
    public Bitmap image() {
        if (firstissuePhotoThumb == null) {
            firstissuePhotoThumb =  Functions.decodeSampledBitmapFromFile(imagePath(),200, 200);
        }   
        return firstissuePhotoThumb;
    }

次に、実際に画像を使用して設定すると、次のようになります。

String picturePath = dbRow.imagePath();
if (picturePath.equals("notset")) {
            holder.ivPicture.setImageResource(R.drawable.photonotset);      
         } else {
            holder.ivPicture.setImageBitmap(dbRow.image());             
          }

編集: 要求されたルーチンは次のとおりです。

public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
        // Raw height and width of image
        final int height = options.outHeight;
        final int width = options.outWidth;
        int inSampleSize = 1;

        if (height > reqHeight || width > reqWidth) {
            if (width > height) {
                inSampleSize = Math.round((float)height / (float)reqHeight);
            } else {
                inSampleSize = Math.round((float)width / (float)reqWidth);
            }
        }
        return inSampleSize;
    }
4

2 に答える 2

0

コードは正しいように見え、大きなビットマップ ファイルを処理するための Android のベスト プラクティスに従っています。

スタックトレースを見ると、Out of Memory が で発生していBitmapFactory.nativeDecodeStreamます。JPEG 画像の場合、アプリケーションは画像データをデコード (圧縮解除) する必要があります。その解凍には、スケーリングする前に、画像をメモリに解凍する必要がある可能性があります。画像が大きい場合 (写真など)、大量のメモリが必要になることがあります。

JPEG 画像のブロック サイズは 8 または 16 になる可能性があるため、 を 8 の倍数にすることをお勧めしますinSampleSize。これにより、画像スケーリング ロジックが JPEG のデコードに大量のメモリを使用しないようにすることができます。

また、 と の値をログに記録するwidthheight便利inSampleSizeです。

于 2013-08-20T10:34:21.010 に答える
0

使用されていないビットマップをリサイクルする必要があります。recycle() API があります。これを使って

于 2013-08-20T10:16:39.853 に答える