Question

I created an arraylist for bitmaps and then i want to remove a single bitmap from arraylist when a button is clicked. I used this for clearing bitmap

DELETE.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            bitmapArray.get(0).recycle();

        }
    });

But this doesnt seem to work . it does not remove the bitmap. Please suggest me something else.

Was it helpful?

Solution

Try calling bitmapArray.remove(0); after bitmapArray.get(0).recycle();

OTHER TIPS

Add this line after..

bitmapArray.get(0).recycle();

you are just recycling but not removing the bitmap object from the list..

bitmapArray.remove(0);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top