Android: Disable soft keyboard at all EditTexts

前端 未结 13 2182
失恋的感觉
失恋的感觉 2020-11-27 06:23

I am working on a dialog at Android with a few EditTexts. I\'ve put this line at the onCreate() in order to disable the soft keyboard:



        
相关标签:
13条回答
  • 2020-11-27 07:02

    Put this in Oncreate Method

    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
    
    0 讨论(0)
提交回复
热议问题