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

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

    Write this statement under

    setContentView(R.layout.activity_main);
    
    getSupportActionBar().setDisplayShowTitleEnabled(false);
    

    if extending AppCompactActivity use getSupportActionbar() if extending Activity use getActionBar() else it may give

    null pointer exception
    

    using android:label="" in AndroidManifest.xml for activity also works but your app won't appear in Recently used apps

提交回复
热议问题