如何从 Android 上的 v7 工具栏中删除后退按钮?

How do you remove the back button from a v7 toolbar on Android?

如何从 Android 上的 v7 工具栏中删除后退按钮?

我在下图中突出显示了我要删除的按钮:

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

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

你可以阅读 android here and here for more information. also this 问题可能会有帮助