<Add google maps to my fragment without hide my na...
# stackoverflow
u
Add google maps to my fragment without hide my navigation bar I'm doing a kotlin app for learning purpouses but I'm pretty lost. I manage to make a main activity where to display 5 fragments in a navigation bar like this

https://i.stack.imgur.com/j4ETJ.png

class MainActivity : AppCompatActivity() { private val mapFragment = MapsFragment() private val favoritesFragment = FavoritesFragment() private val profileFragment = ProfileFragment() private val homeFragment = HomeFragment() private val searchFragment =...