I have been trying to add a back button to the action bar.
I want my view to look like this:

I want to add the back button in the left of the action bar.
I added this code
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
but it doesn’t work.
How can I fix this?
After setting
actionBar.setHomeButtonEnabled(true);Add the following code: