Hide soft keyboard after dialog dismiss

前端 未结 8 1703
孤街浪徒
孤街浪徒 2021-01-31 02:16

I want to hide soft keyboard after AlertDialog dismiss, but it\'s still visible. Here is my code:

alert = new AlertDialo         


        
8条回答
  •  梦如初夏
    2021-01-31 02:57

    In Manifest xml

    android:windowSoftInputMode="stateAlwaysHidden"
    

    It will automatically hide soft keyboard on Dismiss of Dialog

提交回复
热议问题