Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having an listview and i am loading bitmaps in it from the web .. but now the problem is i am having 1000 item in the listview so, it is causing me out of memory error.. i have used the image caching also..

share|improve this question

3 Answers

up vote 1 down vote accepted

try the following code:

   public class ListFivePictureNameDetailsPassFail extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setListAdapter(new StudentListAdapter(this));
}

private class StudentListAdapter extends BaseAdapter {
    private Context mContext;
    private String[] mStudents = { "DurgaPrasad", "Raghu", "Vivek",
            "Satish", "Naga Jyothi", "Vardhika", "Nikhil" };
    private String[] mDetailsStudent = { "Details of DurgaPrasad",
            "Details of  Raghu This row is not created using java",
            "Details of Vivek", "Details of Satish",
            "Details of Naga Jyothi", "Details of Vardhika",
            "Details of Nikhil" };

    public StudentListAdapter(Context context) {
        mContext = context;
    }

    public int getCount() {
        return mStudents.length;
    }

    public Object getItem(int position) {
        return position;
    }

    public long getItemId(int position) {
        return position;
    }

    public View getView(int position, View convertView, ViewGroup parent) {
        View v = convertView;
        if (v == null) {
            System.out.println("111111111111 : "+position);
            LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);

            /*if (position == 0) {
                System.out.println("111111111111 : "+position);
                v = vi.inflate(R.layout.studentdetailsrow, null);
                System.out.println("111111111111 : "+position);
            } else*/
                v = vi.inflate(R.layout.studentdetailsrowother, null);
        }

        ImageView iv = (ImageView) v.findViewById(R.id.icon);
        ImageView iv2 = (ImageView) v.findViewById(R.id.icon2);
        if (position == 0) {
            iv.setImageResource(R.drawable.newicon);
            iv2.setImageResource(R.drawable.icon);
        } else {
            iv.setImageResource(R.drawable.newicon);
            iv2.setImageResource(R.drawable.icon);
        }

        TextView tvname = (TextView) v.findViewById(R.id.stuname);
        TextView tvdetail = (TextView) v.findViewById(R.id.studetail);
        tvname.setText(mStudents[position]);
        tvdetail.setText(mDetailsStudent[position]);
        return v;
    }
};

   }
share|improve this answer
Sorry !! i didn't get u.. but i have also used view holder pattern – Sandeep Dhull Nov 29 '12 at 4:19

I think using any one of the below will solve your problem

Lazy List

Universal ImageLoader

share|improve this answer
Ya!! now i would be using Universal image loader.. thanks – Sandeep Dhull Nov 29 '12 at 4:16

You can also try to minimize the memory usage by scaling the images down as much as possible. Here is an example on how to do that.

share|improve this answer
That's a nice soultion. but wouldn;t that will hurt performace. – Sandeep Dhull Nov 29 '12 at 4:17
nice !! i used it and it is also mentioned in docs – Sandeep Dhull Nov 29 '12 at 4:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.