I want to show the Bitmap image in ImageView from sd card which is stored already. After run my application is crash and getting Ou
I ran into this problem when I didn't kill off my old activity when moving on to a new activity. I fixed it with finish();
finish();
Intent goToMain = new Intent(this,MainActivity.class); startActivity(goToMain); finish();