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

后端 未结 20 2087
傲寒
傲寒 2020-11-29 17:17

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

相关标签:
20条回答
  • 2020-11-29 18:15
    ActionBar actionBar = getActionBar();
    actionBar.setTitle("");
    
    0 讨论(0)
  • 2020-11-29 18:16

    Try:

     getActionBar().setDisplayShowTitleEnabled(false);
    

    For v.7:

     getSupportActionBar().setDisplayShowTitleEnabled(false);
    
    0 讨论(0)
提交回复
热议问题