On Android Support Library 24.1.1, the Snackbar was working fine:
Then starting on Android Support Library 24.2.0 onwards, the
It's 2020 and also I don't know if it's related but I got my snackbar having some padding at the bottom when using android 10 gesture navigation. None of the above works for my case. I finally got it fixed with a super simple line:
val snackbar = Snackbar.make(view, message, duration)
snackbar.isGestureInsetBottomIgnored = true // here
snackbar.show()
Hope it helps.