Search code examples
androidandroid-activityback

How to go back to Previous Activity?


Someone ask me a question a week ago and till now i did not get the answer of that question.The question was how we can go back to previous Activity by pressing back button of device without using intent or finish().


Solution

  • You can do it by simply overriding onBackPressed method in your activity.

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

    Hope this help!