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

Christopher Perry picture Christopher Perry · Oct 5, 2011 · Viewed 116.5k times · Source

I'm looking through the Holo.Light theme, and I can't seem to find the magic style to override to get rid of the title text that briefly shows up when my app first launches.

How can I do that?

Answer

Filippo Mazza picture Filippo Mazza · Jul 14, 2012

Try:

 getActionBar().setDisplayShowTitleEnabled(false);

For v.7:

 getSupportActionBar().setDisplayShowTitleEnabled(false);