Android: Go back to previous activity

前端 未结 23 1554
抹茶落季
抹茶落季 2020-11-22 06:52

I want to do something simple on android app. How is it possible to go back to a previous activity.

What code do I need to go back to previous activity

23条回答
  •  渐次进展
    2020-11-22 07:27

    First, thing you need to keep in mind that, if you want to go back to a previous activity. Then don't call finish() method when goes to another activity using Intent.

    After that you have two way to back from current activity to previous activity:

    Simply call: finish() under button click listener, Or Override the following method to back using system back button:

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

提交回复
热议问题