Android - Simulate Back Button

后端 未结 5 1834
北荒
北荒 2021-02-01 11:57

When i press a button in my app, I need to return to the last activity.

Any ideas?

5条回答
  •  独厮守ぢ
    2021-02-01 12:20

    Just for record: The described method doesn't do the same as the back button does in some cases, but you can call

    this.onBackPressed();
    

    or

    getActivity().onBackPressed();
    

    if you are in a fragment to achieve exaclty the same behaviour.

提交回复
热议问题