Is there a way to make EditText behaviors like TextView in Android (XML is prefered)? I have tried the following:
EditText
TextView
android:editable
You can use your_edit_text.setKeyListener(null); simply to make it un-editable..
your_edit_text.setKeyListener(null);