I want to know how Android process when you create a Bitmap from stream/file/byte. I'm using View Flow implementation in my application where I'm populating images from SDCard using a database. Everything works fine, but after a few swipes my application FC because of OutOfMemoryError. I did try everything over internet,but nothing helps me. Here is how I'm using ViewFlow example :
ImageAdapter.class :
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = mInflater.inflate(R.layout.image_item, null);
}
try {
File bufferFile = new File(ids.get(position));
FileInputStream fis = new FileInputStream(bufferFile);
Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding");
SecretKeySpec keySpec = new SecretKeySpec("asfadasdasd".getBytes(), "AES");
IvParameterSpec ivSpec = new IvParameterSpec("cdsdfngfgbxfvbd".getBytes());
cipher.init(Cipher.DECRYPT_MODE, keySpec, ivSpec);
CipherInputStream cis = new CipherInputStream(fis, cipher);
Log.e("","HEAP SIZE "+Debug.getNativeHeapAllocatedSize());
BitmapFactory.Options o = new BitmapFactory.Options();
o.inTempStorage = new byte[2*1024];
o.inPurgeable=true; //Tell to gc that whether it needs free memory, the Bitmap can be cleared
Bitmap ops = BitmapFactory.decodeStream(cis,null,o);
((ImageView) convertView.findViewById(R.id.imgView)).setImageBitmap(ops);
ops = null;
cis.close();
fis.close();
System.gc();
} catch (Exception e) {
e.printStackTrace();
((ImageView) convertView.findViewById(R.id.imgView)).setImageResource(R.drawable.image_unavailablee);
}
return convertView;
}
Cards.class :
// this is how I initialize viewFlow
viewFlow = (ViewFlow) findViewById(R.id.viewflow);
viewFlow.setAdapter(new ImageAdapter(this.getApplicationContext(), images), position);
I set sideBuffer to 1, and everytime I switch images I can see how my Heap Size is growing.
So my question is, how can I prevent heap size growing and not get that OOM Exception.
Thanks in advance!
.recycle()on your Bitmap object after you're done with it? – MH. Dec 26 '11 at 1:50