How do I kill an Activity when the Back button is pressed?

前端 未结 5 485
傲寒
傲寒 2020-11-30 04:59

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

5条回答
  •  独厮守ぢ
    2020-11-30 05:31

    Simple Override onBackPressed Method:

        @Override
        public void onBackPressed() {
                super.onBackPressed();
                this.finish();
        }
    

提交回复
热议问题