• 1000 первый фрагмент, но я хочу закрыть приложение каким-то кодом
private fun initView() {
setSupportActionBar(toolbar)
bottomNavigationView = findViewById(R.id.bottom_navigation)
val navHostFragment = supportFragmentManager
.findFragmentById(R.id.nav_host_fragment) as NavHostFragment
navController = navHostFragment.navController
navController?.apply {
appBarConfiguration = AppBarConfiguration(setOf(
R.id.action_home,
R.id.action_favorite
))
appBarConfiguration?.let {
setupActionBarWithNavController(this, it)
}
bottomNavigationView?.let {
NavigationUI.setupWithNavController(it, this)
}
}
}