Search code examples
androidandroid-snackbarsoft-keyboard

android : hide snackbar below soft keyboard


i am showing the snackbar on some activities. Now if an edittext is clicked which triggers sof keyboard to pop up , the snackbar is puched to above the keyboard. I want the keyboard to be above the snackbar as in layered and that snackbar is not visible as long as keyboard is visible. How can this be achieved


Solution

  • What you can simply do in the manifest in your activity add this attribute:

    android:windowSoftInputMode="adjustPan|stateHidden"
    

    That's it. Hope this helps.