Hi there,
Two things I would like to understand -
- After following the instructions (clean and building project),
I have tried this simple code -
im = (ImageView) findViewById(R.id.imageView1);
Bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.pic);
Bitmap newBitmap = BitmapFilter.changeStyle(bm, BitmapFilter.BLUR_STYLE);
im.setImageBitmap(newBitmap);
The thing is that the app is crushing and i get the java.lang.OutOfMemoryError.
- Is it possible to save the bitmap with the filter (that are being shown at the ImageView)? and if so how can it be done?
Hi there,
Two things I would like to understand -
I have tried this simple code -
The thing is that the app is crushing and i get the java.lang.OutOfMemoryError.