如何使用 Android 导航组件在某些片段中隐藏操作栏?

How to hide actionbar in some fragments with Android Navigation Components?

我正在使用 android 导航组件来导航片段。 我可以在 Main Activity :

中使用此代码轻松设置操作栏
    NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
    NavigationUI.setupActionBarWithNavController(this, navController, appBarConfiguration);

但是如果我想在某些片段中隐藏 supportActionbar 那么最好的方法应该是什么?

想要隐藏SupportActionBar的片段,可以在onResume()中用.hide()隐藏,在onStop()中用[=再次显示15=]

@Override
public void onResume() {
    super.onResume();
    ActionBar supportActionBar = ((AppCompatActivity) requireActivity()).getSupportActionBar();
    if (supportActionBar != null)
        supportActionBar.hide();
}

@Override
public void onStop() {
    super.onStop();
    ActionBar supportActionBar = ((AppCompatActivity) requireActivity()).getSupportActionBar();
    if (supportActionBar != null)
        supportActionBar.show();
}