File imgFile = new File("/sdcard/Images/test_image.jpg");
if(imgFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
ImageView myImage = (ImageView) findViewById(R.id.imageviewTest);
myImage.setImageBitmap(myBitmap);
}
//This works all well and good until myImage.setImageBitmap is called again (after a picture is taken and loaded in this little "post-view" ImageView rectangle which is myImage) and it runs out of memory.