0

私はアンドロイドのビットマップに関する多くの投稿を読んでいますが、私のコードに合った説明が見つかりませんでした. すべての画像を表示しようとすると、次のエラーが表示されます。

06-09 20:38:03.732: E/AndroidRuntime(3657): java.lang.OutOfMemoryError
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.graphics.BitmapFactory.nativeDecodeStream(Native Method)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:650)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.graphics.BitmapFactory.decodeFile(BitmapFactory.java:389)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at br.com.rigolas.financial.activity.InsertItem.getBitmap(InsertItem.java:415)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at br.com.rigolas.financial.activity.InsertItem.showAttachment(InsertItem.java:194)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at br.com.rigolas.financial.activity.InsertItem.populateFields(InsertItem.java:184)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at br.com.rigolas.financial.activity.InsertItem.onResume(InsertItem.java:144)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1188)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.Activity.performResume(Activity.java:5280)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2606)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2644)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2130)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.ActivityThread.access$600(ActivityThread.java:140)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1227)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.os.Handler.dispatchMessage(Handler.java:99)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.os.Looper.loop(Looper.java:137)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at android.app.ActivityThread.main(ActivityThread.java:4898)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at java.lang.reflect.Method.invokeNative(Native Method)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at java.lang.reflect.Method.invoke(Method.java:511)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
06-09 20:38:03.732: E/AndroidRuntime(3657):     at dalvik.system.NativeStart.main(Native Method)

私のコード:

showAttachment(atts);

atts は配列 os パスです

private void showAttachment(List<Attachment> atts) {

    for(Attachment att : atts){
        insertPhoto(getBitmap(att.getPath()));
    }

}

public Bitmap getBitmap(String path){

    BitmapFactory.Options bmOptions = new BitmapFactory.Options();
    bmOptions.inJustDecodeBounds = false;
    bmOptions.inPurgeable = true;

    Bitmap bitmap = BitmapFactory.decodeFile(path, bmOptions);

    return bitmap;

}

public void insertPhoto(Bitmap btmp){
    final ViewGroup newView = (ViewGroup) LayoutInflater.from(this).inflate(
            R.layout.photo_item, mContainerView, false);


    newView.setBackground(new BitmapDrawable(getResources(),btmp));
    ImageView delete = (ImageView) newView.findViewById(R.id.photo_expense_discart);
    delete.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            //mContainerView.removeView(newView);
            Intent imageDetil = new Intent(InsertItem.this,ImageDetailActivity.class);
            InsertItem.this.startActivity(imageDetil);
        }
    });

    mContainerView.addView(newView, 0);
}

そして私のXML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_margin="5dp"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:alpha="80"
    android:background="#80000000"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/photo_expense_discart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_content_discard_w" />
</LinearLayout>

1つの画像でそれを行うとうまくいきますが、複数を表示しようとするとエラーが発生します。どうすれば解決できるか知っていますか?ありがとう

4

1 に答える 1

0

あなたが提供したコードのこの部分をチェックしてください:

public Bitmap getBitmap(String path){

    BitmapFactory.Options bmOptions = new BitmapFactory.Options();
    bmOptions.inJustDecodeBounds = false;
    bmOptions.inPurgeable = true;

    Bitmap bitmap = BitmapFactory.decodeFile(path, bmOptions);

    return bitmap;

}

の行 Bitmap bitmap = BitmapFactory.decodeFile(path, bmOptions);では、おそらく大きすぎるファイルをデコードしようとしており、メモリ不足の例外が発生しています。

于 2013-06-10T00:46:46.833 に答える