Android: Disable soft keyboard at all EditTexts

前端 未结 13 2337
失恋的感觉
失恋的感觉 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 06:56

    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(edSearch.getWindowToken(), 0);
    

提交回复
热议问题