How can I disable typing in an EditText field in Android?
EditText
Assuming editText is you EditText object:
editText
editText.setEnabled(false);