How to remove v7 toolbar back button [closed]

丶灬走出姿态 提交于 2019-12-10 03:08:59

问题


I need to delete this v7 toolbar from my activity:

Please Help me !


回答1:


If you are using v7 Toolbar you can remove this button with this code :

if (getSupportActionBar() != null) {
    ActionBar actionBar = getSupportActionBar();
    actionBar.setDisplayHomeAsUpEnabled(false);
}

you can read android here and here for more information. also this question may help



来源:https://stackoverflow.com/questions/34615806/how-to-remove-v7-toolbar-back-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!