What is the difference between the actionBar button and the Android feedback button? Since it seems that the back button is an ActionBar called with:
ActionBar actionBar = getSupportActionBar(); actionBar.setDisplayHomeAsUpEnabled(true);
it works better ...
For example: when I press the ActionBar return button, the animations are there, but if I press the default return button, it is not.
I can change the theme from activity preferences. If I return using the ActionBar back button, the colors instantly change, but by default I need to restart the application ....
How can I make my default return button behave like an ActionBar?
source share