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:
EditText
onCreate()
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)