How to close activity and go back to previous activity in android

后端 未结 18 1853
孤独总比滥情好
孤独总比滥情好 2020-12-07 08:19

I have a main activity, that when I click on a button, starts a new activity, i used the following code to do so:

Intent intent = new Intent(this, SettingsAc         


        
18条回答
  •  心在旅途
    2020-12-07 08:53

     @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            int id = item.getItemId();
    
            if ( id == android.R.id.home ) {
                finish();
                return true;
            }
    
            return super.onOptionsItemSelected(item);
        }
    

    Try this it works both on toolbar back button as hardware back button.

提交回复
热议问题