如果在Kotlin中使用Bottom Navigation时出现错误,“无法获取主题资源”或“无法初始化标签”,请尝试使用以下代码示例来解决该问题:
在XML布局中定义BottomNavigationView:
在活动中设置BottomNavigationView:
val bottomNavigationView = findViewById(R.id.bottomNavigationView)
val navController = findNavController(R.id.fragment_container)
val appBarConfiguration = AppBarConfiguration(setOf(
R.id.homeFragment,
R.id.dashboardFragment,
R.id.notificationsFragment))
setupActionBarWithNavController(navController, appBarConfiguration)
bottomNavigationView.setupWithNavController(navController)
确保在build.gradle中添加以下依赖项:
implementation 'com.google.android.material:material:1.0.0'
这是一个有效的解决方案,可以解决Android Kotlin底部导航栏的奇怪行为。