Skip to content

Instantly share code, notes, and snippets.

@ForceTower
Created May 19, 2021 15:19
Show Gist options
  • Save ForceTower/15976e273607615fea91e4d41597a25b to your computer and use it in GitHub Desktop.
Save ForceTower/15976e273607615fea91e4d41597a25b to your computer and use it in GitHub Desktop.
How to load an image into a bottom nav icon
private fun setupProfileOnBottomNav() {
val menuView = binding.bottomNav[0] as BottomNavigationMenuView
val itemView = menuView[2] as BottomNavigationItemView
val icon = itemView.findViewById<ImageView>(R.id.icon)
Glide.with(this)
.load("https://avatars1.githubusercontent.com/u/9421614?s=460&u=499efd7b66284bd4436bc74dd982c52f9e076740&v=4")
.circleCrop()
.into(icon)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment