Remove Icon but have HomeAsUp in ActionBar

前端 未结 8 1325
遥遥无期
遥遥无期 2020-12-25 12:16

I what my actionbar to have a title and homeAsUp but not the logo or icon.

like this:

相关标签:
8条回答
  • 2020-12-25 12:46

    Try to set this thing

    actionBar.setLogo(null);
    
    0 讨论(0)
  • 2020-12-25 12:46
    getActionBar().setHomeButtonEnabled(true);//used to navigate to home
     getActionBar().setDisplayHomeAsUpEnabled(false);//used to hide the left caret symbol
    
    0 讨论(0)
提交回复
热议问题