Android: Disable soft keyboard at all EditTexts

前端 未结 13 2377
失恋的感觉
失恋的感觉 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:44

    Know its too late, but have you tried the following setting to EditText in your layout ?

    android:inputType="none"
    

    UPDATE

    Use,

    editText.setInputType(InputType.TYPE_NULL)
    editText.setFocusable(false)
    

提交回复
热议问题