Show Android SnackBar above keyboard?

Solution 1:

Set

android:windowSoftInputMode="adjustResize"

in the AndroidManifest.xml for the activity containing your snackbar

Solution 2:

If you nest your layout in a ScrollView, the snackbar will appear on top of the keyboard. This is because the view will resize to take up only the available space above the keyboard. And, of course, your View will also be scroll-able if necessary at any time, while the keyboard is shown or not.