带有大量图像的android java.lang.OutOfMemoryError recyclerview

标签 android performance nullpointerexception android-recyclerview

我正在尝试制作一个可以显示大量图片的应用。问题是当我运行应用程序并滚动时,应用程序崩溃并向我显示错误

java.lang.OutOfMemoryError.

我使用的是 android studio,minSdkVersion 15,所有图片都不大于 20、30 KB,但我会展示很多图片。所有图像都在抽屉文件夹中。

这是我将所有数据添加到包括图像在内的对象的类:

package com.example.android.animalsoundsforchildren;

import java.util.ArrayList;

public class Zivotinje {
    private String mAnimal_name;
    private int mAnimal_slika;
    private int mSound;
    private String mkey;

    public Zivotinje(String animalName, int slika, int sound, String key){
        this.setmAnimal_name(animalName);
        this.setmAnimal_slika(slika);
        this.setmSound(sound);
        this.setMkey(key);
    }

    public String getmAnimal_name() {
        return mAnimal_name;
    }

    public void setmAnimal_name(String mAnimal_name) {
        this.mAnimal_name = mAnimal_name;
    }

    public int getmAnimal_slika() {
        return mAnimal_slika;
    }

    public void setmAnimal_slika(int mAnimal_slika) {
        this.mAnimal_slika = mAnimal_slika;
    }
    public int getmSound() {
        return mSound;
    }

    public void setmSound(int mSound) {
        this.mSound = mSound;
    }


    public String getMkey() {
        return mkey;
    }

    public void setMkey(String mkey) {
        this.mkey = mkey;
    }
    //static
    public static ArrayList<Zivotinje> createZivotinjeList(){
        ArrayList<Zivotinje> zivotinje = new ArrayList<Zivotinje>();

        zivotinje.add(new Zivotinje("Sheep", R.drawable.domestic_sheep, R.raw.domestic_sheep, "Domestic"));

        //ADING DATA TO ARRAY OF OBJECTS
        zivotinje.add(new Zivotinje("Sparrow", R.drawable.birds_sparrow, R.raw.birds_sparrow, "Birds"));
        zivotinje.add(new Zivotinje("Flamingo", R.drawable.birds_flamingo, R.raw.birds_flamingo, "Birds"));
        zivotinje.add(new Zivotinje("Hyacinth Macaw", R.drawable.birds_hyacinth_macaw, R.raw.birds_hyacinth_macaw, "Birds"));
        zivotinje.add(new Zivotinje("Kestrel", R.drawable.birds_kestrel, R.raw.birds_kestrel, "Birds"));
        zivotinje.add(new Zivotinje("Pigeon", R.drawable.birds_pigeon, R.raw.birds_pigeon, "Birds"));
        zivotinje.add(new Zivotinje("Seagull", R.drawable.birds_seagull, R.raw.birds_seagull, "Birds"));
        zivotinje.add(new Zivotinje("Toucan", R.drawable.birds_toucan, R.raw.birds_toucan, "Birds"));
        zivotinje.add(new Zivotinje("Swallow", R.drawable.birds_swallow, R.raw.birds_swallow, "Birds"));

        zivotinje.add(new Zivotinje("Dolphin", R.drawable.sea_dolphin, R.raw.sea_dolphin, "Sea"));
        zivotinje.add(new Zivotinje("Bumblebee", R.drawable.insects_bumblebee, R.raw.insects_bumblebee, "Insects"));
        zivotinje.add(new Zivotinje("Tractor", R.drawable.cars_tractor, R.raw.cars_tractor, "Cars"));
        zivotinje.add(new Zivotinje("Baby Cry", R.drawable.laugh_baby_cry, R.raw.laugh_baby_cray, "Laugh"));
        zivotinje.add(new Zivotinje("Wind", R.drawable.nature_wind, R.raw.nature_wind, "Nature"));
        zivotinje.add(new Zivotinje("Golf", R.drawable.effects_golf, R.raw.effects_golf, "Effects"));
        zivotinje.add(new Zivotinje("Clock", R.drawable.others_clock, R.raw.others_clock, "Others"));

        return zivotinje;
    }

    //Dohvacamo sve zivotinje i sortiramo specificne po kljucu tako da kad kliknemo recimo others pozove se ovo
    public static ArrayList<Zivotinje> createZivotinjeListPero(String zivotinjeMenu) {
        ArrayList<Zivotinje> zivotinje = new ArrayList<Zivotinje>();
        ArrayList<Zivotinje> zivotinjeLista = new ArrayList<Zivotinje>();

        zivotinje = createZivotinjeList();


        for (Zivotinje ziv : zivotinje) {

            if (ziv.mkey == zivotinjeMenu) {
                zivotinjeLista.add(ziv);
            }
        }
        return zivotinjeLista;
    }

}

这是适配器,我想我需要处理 onbindviewholder 方法中的问题,但我不知道如何处理:

package com.example.android.animalsoundsforchildren;

import android.content.Context;
import android.media.MediaPlayer;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import java.util.List;


public class ZivotinjeAdapter extends RecyclerView.Adapter<ZivotinjeAdapter.ViewHolder> {

    @Override
    public ZivotinjeAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        Context context = parent.getContext();
        LayoutInflater inflater = LayoutInflater.from(context);

        // Inflate the custom layout
        View contactView = inflater.inflate(R.layout.item_zivotinje, parent, false);

        // Return a new holder instance
        ViewHolder viewHolder = new ViewHolder(contactView);
        return viewHolder;
    }

    @Override
    public void onBindViewHolder(ZivotinjeAdapter.ViewHolder viewHolder, int position) {

        Zivotinje zivotinjeIme = mZivotinje.get(position);

        // Set item views based on the data model
        TextView textView = viewHolder.nameTextView;
        textView.setText(zivotinjeIme.getmAnimal_name());

        //THIS IS WHERE I HANDALE IMAGE VIEW
        ImageView slika_source = viewHolder.imageView;
        slika_source.setImageResource(zivotinjeIme.getmAnimal_slika());


        viewHolder.setItem(mZivotinje.get(position));



    }


    @Override
    public int getItemCount() {
        return mZivotinje.size();
    }

    public static class ViewHolder extends RecyclerView.ViewHolder {

        public ImageView imageView;
        public TextView nameTextView;
        private Zivotinje mItem;



        public void setItem(Zivotinje item) {
            this.mItem = item;
        }



        public ViewHolder(final View itemView) {
            super(itemView);

            nameTextView = (TextView) itemView.findViewById(R.id.zivotinjaIme_id);
            imageView = (ImageView) itemView.findViewById(R.id.slika_id);







            itemView.setOnClickListener(new View.OnClickListener() {

                @Override
                public void onClick(View v) {
                    MediaPlayer mediaPlayer = MediaPlayer.create(v.getContext(), mItem.getmSound());
                    mediaPlayer.start();
                }
            });

        }
    }

    private List<Zivotinje> mZivotinje;

    public ZivotinjeAdapter(List<Zivotinje> animals) {
        mZivotinje = animals;
    }
}

最佳答案

需要使用图片加载库来加载图片,

由于图像的分辨率,您获得了 OOM。

有很多图像加载库,但我更喜欢Glide .它在很多方面都比其他的好,

它会解决你的OOM问题

这里是用法

 ImageView slika_source = viewHolder.imageView;
 Glide.with(mContext)
            .load((Integer) zivotinjeIme.getmAnimal_slika())                
            .into(slika_source);

关于带有大量图像的android java.lang.OutOfMemoryError recyclerview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36676585/

相关文章:

php - 为什么 PHP strtolower 的性能变化如此之大?

performance - R 中的高性能大数据处理

java - 使用 For 循环初始化 JTextFields 和 JLabels 并将其添加到 JPanel 使用数组会导致错误

android - 更新到 Android 设计支持 22.2.1 后出现 Nullpointer 异常

java - 阵列适配器 : You must supply a resource ID for a TextView- Android Studio

android - Sony Xperia T (ST26) 日历帐户问题

android - MenuItemCompat.getActionView(searchItem) 返回 null

java - 按下按钮后如何将按钮恢复为默认颜色?

javascript - setTimeout 运行其回调代码比没有它慢得多

java - 如何修复imagebutton onclicklistener的空指针异常?