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()
You can do that:
textView.setOnClickListener(null);
It will disable the keyboard to the textView and the click will not work anymore.