如何删除v7工具栏后退按钮[关闭]

问题描述 投票:5回答:1

我需要从我的活动中删除这个v7工具栏:

enter image description here

请帮我 !

android button android-button
1个回答
24
投票

如果您使用的是v7工具栏,则可以使用以下代码删除此按钮:

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

你可以阅读android herehere获取更多信息。还有this问题可能有所帮助

© www.soinside.com 2019 - 2024. All rights reserved.