Android - Simulate Back Button

后端 未结 5 1788
北荒
北荒 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:18

    You can spoof a up button call on back button press:

    @Override
    public void onBackPressed() {
        onNavigateUp();
    }
    

提交回复
热议问题