Search code examples
androidandroid-actionbarandroid-support-library

Back arrow not visible on Action Bar


I am implementing the following code which inherits AppCompatActivity but I can't see the back arrow on Action Bar.

 @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setDisplayShowHomeEnabled(true);

enter image description here

I also want to know about how to make the Title Text Left Align.


Solution

  • An arrow button should be present for easier navigation. Providing Up Navigation .

    It is easy to do this, see Providing Up Navigation for a short guide.