How do you remove the title text from the Android ActionBar?

Try:

 getActionBar().setDisplayShowTitleEnabled(false);

For v.7:

 getSupportActionBar().setDisplayShowTitleEnabled(false);

Leave a Comment