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

后端 未结 20 2139
傲寒
傲寒 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:00

    If you only want to do it for one activity and perhaps even dynamically, you can also use

    ActionBar actionBar = getActionBar();
    actionBar.setDisplayOptions(actionBar.getDisplayOptions() ^ ActionBar.DISPLAY_SHOW_TITLE);
    

提交回复
热议问题