How to navigate to another "Activity" From navigation bar in Kotlin
I have bottomNavigationView but i want to open another activity if i clicked the item inside the navbar menu
this is my code:
MainActivity:
val bottomNavigationView =
findViewById(R.id.bottom_navigation) as BottomNavigationView
bottomNavigationView.selectedItemId = R.id.ic_vector_home
val homeFragment = HomeFragment()
val journalFragment = JournalFragment()
val solahFragment = SolahFragment()
val qiblaFragment = QiblaFragment()
val moreFragment =...