I got an Activity that when it starts, it loads an image from the internet. In an effort to save memory, when the Activity is left by the back button being pressed, I want t
Simple Override onBackPressed Method:
@Override public void onBackPressed() { super.onBackPressed(); this.finish(); }