If I disable an EditText widget using
EditText
editText.setEnabled(false);
I can still type into it using the on-screen input method (in
I think you should be able to editText.setOnClickListener() with your own function and call super.onClickListener() if you want your text edited.
Edit: Following link has some answers which sound more like the right way: Can we have uneditable text in edittext